Add proper support for caching & reasoning for openrouter (#30)

Kujtim Hoxha created

* chore: make message serializable

provider options are not handled

* feat: support anthropic cache openrouter

* feat: support streaming correctly

* fix(lint): some small issues

* chore: remove mesage serialization

Change summary

agent.go                                                                                                |    4 
providers/anthropic/anthropic.go                                                                        |   26 
providers/openai/language_model.go                                                                      |  278 
providers/openai/language_model_hooks.go                                                                |  271 
providers/openai/openai_test.go                                                                         |   36 
providers/openai/responses_language_model.go                                                            |   10 
providers/openrouter/language_model_hooks.go                                                            |  798 
providers/openrouter/openrouter.go                                                                      |    1 
providers/openrouter/provider_options.go                                                                |   20 
providertests/anthropic_test.go                                                                         |   62 
providertests/azure_test.go                                                                             |   10 
providertests/bedrock_test.go                                                                           |    8 
providertests/common_test.go                                                                            |    9 
providertests/google_test.go                                                                            |    6 
providertests/openai_responses_test.go                                                                  |    4 
providertests/openai_test.go                                                                            |    2 
providertests/openaicompat_test.go                                                                      |   14 
providertests/openrouter_test.go                                                                        |   19 
providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/multi_tool.yaml              |   40 
providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/multi_tool_streaming.yaml    |  108 
providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/simple.yaml                  |   33 
providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/simple_streaming.yaml        |   77 
providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/tool.yaml                    |   63 
providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/tool_streaming.yaml          |  151 
providertests/testdata/TestAnthropicThinkingWithCacheControl/claude-sonnet-4/thinking-streaming.yaml    |  108 
providertests/testdata/TestAnthropicThinkingWithCacheControl/claude-sonnet-4/thinking.yaml              |   26 
providertests/testdata/TestOpenRouterCommon/glm-4.5/multi_tool.yaml                                     |    2 
providertests/testdata/TestOpenRouterCommon/glm-4.5/multi_tool_streaming.yaml                           |  234 
providertests/testdata/TestOpenRouterCommon/glm-4.5/simple.yaml                                         |    2 
providertests/testdata/TestOpenRouterCommon/glm-4.5/simple_streaming.yaml                               |  176 
providertests/testdata/TestOpenRouterCommon/glm-4.5/tool.yaml                                           |    2 
providertests/testdata/TestOpenRouterCommon/glm-4.5/tool_streaming.yaml                                 |  135 
providertests/testdata/TestOpenRouterCommon/glm-4.6/multi_tool.yaml                                     |    0 
providertests/testdata/TestOpenRouterCommon/glm-4.6/multi_tool_streaming.yaml                           |  204 
providertests/testdata/TestOpenRouterCommon/glm-4.6/simple.yaml                                         |    0 
providertests/testdata/TestOpenRouterCommon/glm-4.6/simple_streaming.yaml                               | 2688 
providertests/testdata/TestOpenRouterCommon/glm-4.6/tool.yaml                                           |    0 
providertests/testdata/TestOpenRouterCommon/glm-4.6/tool_streaming.yaml                                 |  244 
providertests/testdata/TestOpenRouterCommon/gpt-5/multi_tool.yaml                                       |    2 
providertests/testdata/TestOpenRouterCommon/gpt-5/multi_tool_streaming.yaml                             |    5 
providertests/testdata/TestOpenRouterCommon/gpt-5/simple.yaml                                           |    2 
providertests/testdata/TestOpenRouterCommon/gpt-5/simple_streaming.yaml                                 |    4 
providertests/testdata/TestOpenRouterCommon/gpt-5/tool.yaml                                             |    2 
providertests/testdata/TestOpenRouterCommon/gpt-5/tool_streaming.yaml                                   |  186 
providertests/testdata/TestOpenRouterCommon/grok-code-fast-1/multi_tool.yaml                            |    2 
providertests/testdata/TestOpenRouterCommon/grok-code-fast-1/multi_tool_streaming.yaml                  |   63 
providertests/testdata/TestOpenRouterCommon/grok-code-fast-1/simple.yaml                                |    2 
providertests/testdata/TestOpenRouterCommon/grok-code-fast-1/simple_streaming.yaml                      |  219 
providertests/testdata/TestOpenRouterCommon/grok-code-fast-1/tool.yaml                                  |    2 
providertests/testdata/TestOpenRouterCommon/grok-code-fast-1/tool_streaming.yaml                        |   31 
providertests/testdata/TestOpenRouterCommonWithAnthropicCache/claude-sonnet-4/multi_tool.yaml           |   26 
providertests/testdata/TestOpenRouterCommonWithAnthropicCache/claude-sonnet-4/multi_tool_streaming.yaml |   89 
providertests/testdata/TestOpenRouterCommonWithAnthropicCache/claude-sonnet-4/simple.yaml               |   33 
providertests/testdata/TestOpenRouterCommonWithAnthropicCache/claude-sonnet-4/simple_streaming.yaml     |   54 
providertests/testdata/TestOpenRouterCommonWithAnthropicCache/claude-sonnet-4/tool.yaml                 |   26 
providertests/testdata/TestOpenRouterCommonWithAnthropicCache/claude-sonnet-4/tool_streaming.yaml       |  123 
providertests/testdata/TestOpenRouterThinking/claude-sonnet-4-sig/thinking-streaming.yaml               |   25 
providertests/testdata/TestOpenRouterThinking/claude-sonnet-4-sig/thinking.yaml                         |    4 
providertests/testdata/TestOpenRouterThinking/claude-sonnet-4/thinking-streaming.yaml                   |   61 
providertests/testdata/TestOpenRouterThinking/claude-sonnet-4/thinking.yaml                             |    2 
providertests/testdata/TestOpenRouterThinking/glm-4.6/thinking-streaming.yaml                           |  141 
providertests/testdata/TestOpenRouterThinking/glm-4.6/thinking.yaml                                     |    0 
providertests/testdata/TestOpenRouterThinking/gpt-5/thinking-streaming.yaml                             |  185 
providertests/testdata/TestOpenRouterThinking/gpt-5/thinking.yaml                                       |    2 
providertests/testdata/TestOpenRouterThinking/grok-code-fast-1/thinking-streaming.yaml                  |   76 
providertests/testdata/TestOpenRouterThinking/grok-code-fast-1/thinking.yaml                            |   26 
66 files changed, 3,601 insertions(+), 3,663 deletions(-)

Detailed changes

agent.go 🔗

@@ -1162,10 +1162,10 @@ func (a *agent) processStepStream(ctx context.Context, stream StreamResponse, op
 			}
 
 		case StreamPartTypeReasoningStart:
-			activeReasoningContent[part.ID] = reasoningContent{content: "", options: part.ProviderMetadata}
+			activeReasoningContent[part.ID] = reasoningContent{content: part.Delta, options: part.ProviderMetadata}
 			if opts.OnReasoningStart != nil {
 				content := ReasoningContent{
-					Text:             "",
+					Text:             part.Delta,
 					ProviderMetadata: part.ProviderMetadata,
 				}
 				err := opts.OnReasoningStart(part.ID, content)

providers/anthropic/anthropic.go 🔗

@@ -299,7 +299,8 @@ func (a *provider) Name() string {
 	return Name
 }
 
-func getCacheControl(providerOptions fantasy.ProviderOptions) *CacheControl {
+// GetCacheControl extracts cache control settings from provider options.
+func GetCacheControl(providerOptions fantasy.ProviderOptions) *CacheControl {
 	if anthropicOptions, ok := providerOptions[Name]; ok {
 		if options, ok := anthropicOptions.(*ProviderCacheControlOptions); ok {
 			return &options.CacheControl
@@ -308,7 +309,8 @@ func getCacheControl(providerOptions fantasy.ProviderOptions) *CacheControl {
 	return nil
 }
 
-func getReasoningMetadata(providerOptions fantasy.ProviderOptions) *ReasoningOptionMetadata {
+// GetReasoningMetadata extracts reasoning metadata from provider options.
+func GetReasoningMetadata(providerOptions fantasy.ProviderOptions) *ReasoningOptionMetadata {
 	if anthropicOptions, ok := providerOptions[Name]; ok {
 		if reasoning, ok := anthropicOptions.(*ReasoningOptionMetadata); ok {
 			return reasoning
@@ -387,7 +389,7 @@ func (a languageModel) toTools(tools []fantasy.Tool, toolChoice *fantasy.ToolCho
 					required = reqArr
 				}
 			}
-			cacheControl := getCacheControl(ft.ProviderOptions)
+			cacheControl := GetCacheControl(ft.ProviderOptions)
 
 			anthropicTool := anthropic.ToolParam{
 				Name:        ft.Name,
@@ -477,9 +479,9 @@ func toPrompt(prompt fantasy.Prompt, sendReasoningData bool) ([]anthropic.TextBl
 			for _, msg := range block.Messages {
 				for i, part := range msg.Content {
 					isLastPart := i == len(msg.Content)-1
-					cacheControl := getCacheControl(part.Options())
+					cacheControl := GetCacheControl(part.Options())
 					if cacheControl == nil && isLastPart {
-						cacheControl = getCacheControl(msg.ProviderOptions)
+						cacheControl = GetCacheControl(msg.ProviderOptions)
 					}
 					text, ok := fantasy.AsMessagePart[fantasy.TextPart](part)
 					if !ok {
@@ -501,9 +503,9 @@ func toPrompt(prompt fantasy.Prompt, sendReasoningData bool) ([]anthropic.TextBl
 				if msg.Role == fantasy.MessageRoleUser {
 					for i, part := range msg.Content {
 						isLastPart := i == len(msg.Content)-1
-						cacheControl := getCacheControl(part.Options())
+						cacheControl := GetCacheControl(part.Options())
 						if cacheControl == nil && isLastPart {
-							cacheControl = getCacheControl(msg.ProviderOptions)
+							cacheControl = GetCacheControl(msg.ProviderOptions)
 						}
 						switch part.GetType() {
 						case fantasy.ContentTypeText:
@@ -541,9 +543,9 @@ func toPrompt(prompt fantasy.Prompt, sendReasoningData bool) ([]anthropic.TextBl
 				} else if msg.Role == fantasy.MessageRoleTool {
 					for i, part := range msg.Content {
 						isLastPart := i == len(msg.Content)-1
-						cacheControl := getCacheControl(part.Options())
+						cacheControl := GetCacheControl(part.Options())
 						if cacheControl == nil && isLastPart {
-							cacheControl = getCacheControl(msg.ProviderOptions)
+							cacheControl = GetCacheControl(msg.ProviderOptions)
 						}
 						result, ok := fantasy.AsMessagePart[fantasy.ToolResultPart](part)
 						if !ok {
@@ -604,9 +606,9 @@ func toPrompt(prompt fantasy.Prompt, sendReasoningData bool) ([]anthropic.TextBl
 			for _, msg := range block.Messages {
 				for i, part := range msg.Content {
 					isLastPart := i == len(msg.Content)-1
-					cacheControl := getCacheControl(part.Options())
+					cacheControl := GetCacheControl(part.Options())
 					if cacheControl == nil && isLastPart {
-						cacheControl = getCacheControl(msg.ProviderOptions)
+						cacheControl = GetCacheControl(msg.ProviderOptions)
 					}
 					switch part.GetType() {
 					case fantasy.ContentTypeText:
@@ -635,7 +637,7 @@ func toPrompt(prompt fantasy.Prompt, sendReasoningData bool) ([]anthropic.TextBl
 							})
 							continue
 						}
-						reasoningMetadata := getReasoningMetadata(part.Options())
+						reasoningMetadata := GetReasoningMetadata(part.Options())
 						if reasoningMetadata == nil {
 							warnings = append(warnings, fantasy.CallWarning{
 								Type:    "other",

providers/openai/language_model.go 🔗

@@ -2,10 +2,8 @@ package openai
 
 import (
 	"context"
-	"encoding/base64"
 	"encoding/json"
 	"errors"
-	"fmt"
 	"io"
 	"strings"
 
@@ -28,6 +26,7 @@ type languageModel struct {
 	streamUsageFunc            LanguageModelStreamUsageFunc
 	streamExtraFunc            LanguageModelStreamExtraFunc
 	streamProviderMetadataFunc LanguageModelStreamProviderMetadataFunc
+	toPromptFunc               LanguageModelToPromptFunc
 }
 
 // LanguageModelOption is a function that configures a languageModel.
@@ -75,6 +74,13 @@ func WithLanguageModelStreamUsageFunc(fn LanguageModelStreamUsageFunc) LanguageM
 	}
 }
 
+// WithLanguageModelToPromptFunc sets the to prompt function for the language model.
+func WithLanguageModelToPromptFunc(fn LanguageModelToPromptFunc) LanguageModelOption {
+	return func(l *languageModel) {
+		l.toPromptFunc = fn
+	}
+}
+
 func newLanguageModel(modelID string, provider string, client openai.Client, opts ...LanguageModelOption) languageModel {
 	model := languageModel{
 		modelID:                    modelID,
@@ -85,6 +91,7 @@ func newLanguageModel(modelID string, provider string, client openai.Client, opt
 		usageFunc:                  DefaultUsageFunc,
 		streamUsageFunc:            DefaultStreamUsageFunc,
 		streamProviderMetadataFunc: DefaultStreamProviderMetadataFunc,
+		toPromptFunc:               DefaultToPrompt,
 	}
 
 	for _, o := range opts {
@@ -112,7 +119,7 @@ func (o languageModel) Provider() string {
 
 func (o languageModel) prepareParams(call fantasy.Call) (*openai.ChatCompletionNewParams, []fantasy.CallWarning, error) {
 	params := &openai.ChatCompletionNewParams{}
-	messages, warnings := toPrompt(call.Prompt)
+	messages, warnings := o.toPromptFunc(call.Prompt, o.provider, o.modelID)
 	if call.TopK != nil {
 		warnings = append(warnings, fantasy.CallWarning{
 			Type:    fantasy.CallWarningTypeUnsupportedSetting,
@@ -635,271 +642,6 @@ func toOpenAiTools(tools []fantasy.Tool, toolChoice *fantasy.ToolChoice) (openAi
 	return openAiTools, openAiToolChoice, warnings
 }
 
-func toPrompt(prompt fantasy.Prompt) ([]openai.ChatCompletionMessageParamUnion, []fantasy.CallWarning) {
-	var messages []openai.ChatCompletionMessageParamUnion
-	var warnings []fantasy.CallWarning
-	for _, msg := range prompt {
-		switch msg.Role {
-		case fantasy.MessageRoleSystem:
-			var systemPromptParts []string
-			for _, c := range msg.Content {
-				if c.GetType() != fantasy.ContentTypeText {
-					warnings = append(warnings, fantasy.CallWarning{
-						Type:    fantasy.CallWarningTypeOther,
-						Message: "system prompt can only have text content",
-					})
-					continue
-				}
-				textPart, ok := fantasy.AsContentType[fantasy.TextPart](c)
-				if !ok {
-					warnings = append(warnings, fantasy.CallWarning{
-						Type:    fantasy.CallWarningTypeOther,
-						Message: "system prompt text part does not have the right type",
-					})
-					continue
-				}
-				text := textPart.Text
-				if strings.TrimSpace(text) != "" {
-					systemPromptParts = append(systemPromptParts, textPart.Text)
-				}
-			}
-			if len(systemPromptParts) == 0 {
-				warnings = append(warnings, fantasy.CallWarning{
-					Type:    fantasy.CallWarningTypeOther,
-					Message: "system prompt has no text parts",
-				})
-				continue
-			}
-			messages = append(messages, openai.SystemMessage(strings.Join(systemPromptParts, "\n")))
-		case fantasy.MessageRoleUser:
-			// simple user message just text content
-			if len(msg.Content) == 1 && msg.Content[0].GetType() == fantasy.ContentTypeText {
-				textPart, ok := fantasy.AsContentType[fantasy.TextPart](msg.Content[0])
-				if !ok {
-					warnings = append(warnings, fantasy.CallWarning{
-						Type:    fantasy.CallWarningTypeOther,
-						Message: "user message text part does not have the right type",
-					})
-					continue
-				}
-				messages = append(messages, openai.UserMessage(textPart.Text))
-				continue
-			}
-			// text content and attachments
-			// for now we only support image content later we need to check
-			// TODO: add the supported media types to the language model so we
-			//  can use that to validate the data here.
-			var content []openai.ChatCompletionContentPartUnionParam
-			for _, c := range msg.Content {
-				switch c.GetType() {
-				case fantasy.ContentTypeText:
-					textPart, ok := fantasy.AsContentType[fantasy.TextPart](c)
-					if !ok {
-						warnings = append(warnings, fantasy.CallWarning{
-							Type:    fantasy.CallWarningTypeOther,
-							Message: "user message text part does not have the right type",
-						})
-						continue
-					}
-					content = append(content, openai.ChatCompletionContentPartUnionParam{
-						OfText: &openai.ChatCompletionContentPartTextParam{
-							Text: textPart.Text,
-						},
-					})
-				case fantasy.ContentTypeFile:
-					filePart, ok := fantasy.AsContentType[fantasy.FilePart](c)
-					if !ok {
-						warnings = append(warnings, fantasy.CallWarning{
-							Type:    fantasy.CallWarningTypeOther,
-							Message: "user message file part does not have the right type",
-						})
-						continue
-					}
-
-					switch {
-					case strings.HasPrefix(filePart.MediaType, "image/"):
-						// Handle image files
-						base64Encoded := base64.StdEncoding.EncodeToString(filePart.Data)
-						data := "data:" + filePart.MediaType + ";base64," + base64Encoded
-						imageURL := openai.ChatCompletionContentPartImageImageURLParam{URL: data}
-
-						// Check for provider-specific options like image detail
-						if providerOptions, ok := filePart.ProviderOptions[Name]; ok {
-							if detail, ok := providerOptions.(*ProviderFileOptions); ok {
-								imageURL.Detail = detail.ImageDetail
-							}
-						}
-
-						imageBlock := openai.ChatCompletionContentPartImageParam{ImageURL: imageURL}
-						content = append(content, openai.ChatCompletionContentPartUnionParam{OfImageURL: &imageBlock})
-
-					case filePart.MediaType == "audio/wav":
-						// Handle WAV audio files
-						base64Encoded := base64.StdEncoding.EncodeToString(filePart.Data)
-						audioBlock := openai.ChatCompletionContentPartInputAudioParam{
-							InputAudio: openai.ChatCompletionContentPartInputAudioInputAudioParam{
-								Data:   base64Encoded,
-								Format: "wav",
-							},
-						}
-						content = append(content, openai.ChatCompletionContentPartUnionParam{OfInputAudio: &audioBlock})
-
-					case filePart.MediaType == "audio/mpeg" || filePart.MediaType == "audio/mp3":
-						// Handle MP3 audio files
-						base64Encoded := base64.StdEncoding.EncodeToString(filePart.Data)
-						audioBlock := openai.ChatCompletionContentPartInputAudioParam{
-							InputAudio: openai.ChatCompletionContentPartInputAudioInputAudioParam{
-								Data:   base64Encoded,
-								Format: "mp3",
-							},
-						}
-						content = append(content, openai.ChatCompletionContentPartUnionParam{OfInputAudio: &audioBlock})
-
-					case filePart.MediaType == "application/pdf":
-						// Handle PDF files
-						dataStr := string(filePart.Data)
-
-						// Check if data looks like a file ID (starts with "file-")
-						if strings.HasPrefix(dataStr, "file-") {
-							fileBlock := openai.ChatCompletionContentPartFileParam{
-								File: openai.ChatCompletionContentPartFileFileParam{
-									FileID: param.NewOpt(dataStr),
-								},
-							}
-							content = append(content, openai.ChatCompletionContentPartUnionParam{OfFile: &fileBlock})
-						} else {
-							// Handle as base64 data
-							base64Encoded := base64.StdEncoding.EncodeToString(filePart.Data)
-							data := "data:application/pdf;base64," + base64Encoded
-
-							filename := filePart.Filename
-							if filename == "" {
-								// Generate default filename based on content index
-								filename = fmt.Sprintf("part-%d.pdf", len(content))
-							}
-
-							fileBlock := openai.ChatCompletionContentPartFileParam{
-								File: openai.ChatCompletionContentPartFileFileParam{
-									Filename: param.NewOpt(filename),
-									FileData: param.NewOpt(data),
-								},
-							}
-							content = append(content, openai.ChatCompletionContentPartUnionParam{OfFile: &fileBlock})
-						}
-
-					default:
-						warnings = append(warnings, fantasy.CallWarning{
-							Type:    fantasy.CallWarningTypeOther,
-							Message: fmt.Sprintf("file part media type %s not supported", filePart.MediaType),
-						})
-					}
-				}
-			}
-			messages = append(messages, openai.UserMessage(content))
-		case fantasy.MessageRoleAssistant:
-			// simple assistant message just text content
-			if len(msg.Content) == 1 && msg.Content[0].GetType() == fantasy.ContentTypeText {
-				textPart, ok := fantasy.AsContentType[fantasy.TextPart](msg.Content[0])
-				if !ok {
-					warnings = append(warnings, fantasy.CallWarning{
-						Type:    fantasy.CallWarningTypeOther,
-						Message: "assistant message text part does not have the right type",
-					})
-					continue
-				}
-				messages = append(messages, openai.AssistantMessage(textPart.Text))
-				continue
-			}
-			assistantMsg := openai.ChatCompletionAssistantMessageParam{
-				Role: "assistant",
-			}
-			for _, c := range msg.Content {
-				switch c.GetType() {
-				case fantasy.ContentTypeText:
-					textPart, ok := fantasy.AsContentType[fantasy.TextPart](c)
-					if !ok {
-						warnings = append(warnings, fantasy.CallWarning{
-							Type:    fantasy.CallWarningTypeOther,
-							Message: "assistant message text part does not have the right type",
-						})
-						continue
-					}
-					assistantMsg.Content = openai.ChatCompletionAssistantMessageParamContentUnion{
-						OfString: param.NewOpt(textPart.Text),
-					}
-				case fantasy.ContentTypeToolCall:
-					toolCallPart, ok := fantasy.AsContentType[fantasy.ToolCallPart](c)
-					if !ok {
-						warnings = append(warnings, fantasy.CallWarning{
-							Type:    fantasy.CallWarningTypeOther,
-							Message: "assistant message tool part does not have the right type",
-						})
-						continue
-					}
-					assistantMsg.ToolCalls = append(assistantMsg.ToolCalls,
-						openai.ChatCompletionMessageToolCallUnionParam{
-							OfFunction: &openai.ChatCompletionMessageFunctionToolCallParam{
-								ID:   toolCallPart.ToolCallID,
-								Type: "function",
-								Function: openai.ChatCompletionMessageFunctionToolCallFunctionParam{
-									Name:      toolCallPart.ToolName,
-									Arguments: toolCallPart.Input,
-								},
-							},
-						})
-				}
-			}
-			messages = append(messages, openai.ChatCompletionMessageParamUnion{
-				OfAssistant: &assistantMsg,
-			})
-		case fantasy.MessageRoleTool:
-			for _, c := range msg.Content {
-				if c.GetType() != fantasy.ContentTypeToolResult {
-					warnings = append(warnings, fantasy.CallWarning{
-						Type:    fantasy.CallWarningTypeOther,
-						Message: "tool message can only have tool result content",
-					})
-					continue
-				}
-
-				toolResultPart, ok := fantasy.AsContentType[fantasy.ToolResultPart](c)
-				if !ok {
-					warnings = append(warnings, fantasy.CallWarning{
-						Type:    fantasy.CallWarningTypeOther,
-						Message: "tool message result part does not have the right type",
-					})
-					continue
-				}
-
-				switch toolResultPart.Output.GetType() {
-				case fantasy.ToolResultContentTypeText:
-					output, ok := fantasy.AsToolResultOutputType[fantasy.ToolResultOutputContentText](toolResultPart.Output)
-					if !ok {
-						warnings = append(warnings, fantasy.CallWarning{
-							Type:    fantasy.CallWarningTypeOther,
-							Message: "tool result output does not have the right type",
-						})
-						continue
-					}
-					messages = append(messages, openai.ToolMessage(output.Text, toolResultPart.ToolCallID))
-				case fantasy.ToolResultContentTypeError:
-					// TODO: check if better handling is needed
-					output, ok := fantasy.AsToolResultOutputType[fantasy.ToolResultOutputContentError](toolResultPart.Output)
-					if !ok {
-						warnings = append(warnings, fantasy.CallWarning{
-							Type:    fantasy.CallWarningTypeOther,
-							Message: "tool result output does not have the right type",
-						})
-						continue
-					}
-					messages = append(messages, openai.ToolMessage(output.Error.Error(), toolResultPart.ToolCallID))
-				}
-			}
-		}
-	}
-	return messages, warnings
-}
-
 // parseAnnotationsFromDelta parses annotations from the raw JSON of a delta.
 func parseAnnotationsFromDelta(delta openai.ChatCompletionChunkChoiceDelta) []openai.ChatCompletionMessageAnnotation {
 	var annotations []openai.ChatCompletionMessageAnnotation

providers/openai/language_model_hooks.go 🔗

@@ -1,7 +1,9 @@
 package openai
 
 import (
+	"encoding/base64"
 	"fmt"
+	"strings"
 
 	"charm.land/fantasy"
 	"github.com/openai/openai-go/v2"
@@ -30,6 +32,9 @@ type LanguageModelStreamUsageFunc = func(chunk openai.ChatCompletionChunk, ctx m
 // LanguageModelStreamProviderMetadataFunc is a function that handles stream provider metadata for the language model.
 type LanguageModelStreamProviderMetadataFunc = func(choice openai.ChatCompletionChoice, metadata fantasy.ProviderMetadata) fantasy.ProviderMetadata
 
+// LanguageModelToPromptFunc is a function that handles converting fantasy prompts to openai sdk messages.
+type LanguageModelToPromptFunc = func(prompt fantasy.Prompt, provider, model string) ([]openai.ChatCompletionMessageParamUnion, []fantasy.CallWarning)
+
 // DefaultPrepareCallFunc is the default implementation for preparing a call to the language model.
 func DefaultPrepareCallFunc(model fantasy.LanguageModel, params *openai.ChatCompletionNewParams, call fantasy.Call) ([]fantasy.CallWarning, error) {
 	if call.ProviderOptions == nil {
@@ -267,3 +272,269 @@ func DefaultStreamProviderMetadataFunc(choice openai.ChatCompletionChoice, metad
 	}
 	return metadata
 }
+
+// DefaultToPrompt converts a fantasy prompt to OpenAI format with default handling.
+func DefaultToPrompt(prompt fantasy.Prompt, _, _ string) ([]openai.ChatCompletionMessageParamUnion, []fantasy.CallWarning) {
+	var messages []openai.ChatCompletionMessageParamUnion
+	var warnings []fantasy.CallWarning
+	for _, msg := range prompt {
+		switch msg.Role {
+		case fantasy.MessageRoleSystem:
+			var systemPromptParts []string
+			for _, c := range msg.Content {
+				if c.GetType() != fantasy.ContentTypeText {
+					warnings = append(warnings, fantasy.CallWarning{
+						Type:    fantasy.CallWarningTypeOther,
+						Message: "system prompt can only have text content",
+					})
+					continue
+				}
+				textPart, ok := fantasy.AsContentType[fantasy.TextPart](c)
+				if !ok {
+					warnings = append(warnings, fantasy.CallWarning{
+						Type:    fantasy.CallWarningTypeOther,
+						Message: "system prompt text part does not have the right type",
+					})
+					continue
+				}
+				text := textPart.Text
+				if strings.TrimSpace(text) != "" {
+					systemPromptParts = append(systemPromptParts, textPart.Text)
+				}
+			}
+			if len(systemPromptParts) == 0 {
+				warnings = append(warnings, fantasy.CallWarning{
+					Type:    fantasy.CallWarningTypeOther,
+					Message: "system prompt has no text parts",
+				})
+				continue
+			}
+			messages = append(messages, openai.SystemMessage(strings.Join(systemPromptParts, "\n")))
+		case fantasy.MessageRoleUser:
+			// simple user message just text content
+			if len(msg.Content) == 1 && msg.Content[0].GetType() == fantasy.ContentTypeText {
+				textPart, ok := fantasy.AsContentType[fantasy.TextPart](msg.Content[0])
+				if !ok {
+					warnings = append(warnings, fantasy.CallWarning{
+						Type:    fantasy.CallWarningTypeOther,
+						Message: "user message text part does not have the right type",
+					})
+					continue
+				}
+				messages = append(messages, openai.UserMessage(textPart.Text))
+				continue
+			}
+			// text content and attachments
+			// for now we only support image content later we need to check
+			// TODO: add the supported media types to the language model so we
+			//  can use that to validate the data here.
+			var content []openai.ChatCompletionContentPartUnionParam
+			for _, c := range msg.Content {
+				switch c.GetType() {
+				case fantasy.ContentTypeText:
+					textPart, ok := fantasy.AsContentType[fantasy.TextPart](c)
+					if !ok {
+						warnings = append(warnings, fantasy.CallWarning{
+							Type:    fantasy.CallWarningTypeOther,
+							Message: "user message text part does not have the right type",
+						})
+						continue
+					}
+					content = append(content, openai.ChatCompletionContentPartUnionParam{
+						OfText: &openai.ChatCompletionContentPartTextParam{
+							Text: textPart.Text,
+						},
+					})
+				case fantasy.ContentTypeFile:
+					filePart, ok := fantasy.AsContentType[fantasy.FilePart](c)
+					if !ok {
+						warnings = append(warnings, fantasy.CallWarning{
+							Type:    fantasy.CallWarningTypeOther,
+							Message: "user message file part does not have the right type",
+						})
+						continue
+					}
+
+					switch {
+					case strings.HasPrefix(filePart.MediaType, "image/"):
+						// Handle image files
+						base64Encoded := base64.StdEncoding.EncodeToString(filePart.Data)
+						data := "data:" + filePart.MediaType + ";base64," + base64Encoded
+						imageURL := openai.ChatCompletionContentPartImageImageURLParam{URL: data}
+
+						// Check for provider-specific options like image detail
+						if providerOptions, ok := filePart.ProviderOptions[Name]; ok {
+							if detail, ok := providerOptions.(*ProviderFileOptions); ok {
+								imageURL.Detail = detail.ImageDetail
+							}
+						}
+
+						imageBlock := openai.ChatCompletionContentPartImageParam{ImageURL: imageURL}
+						content = append(content, openai.ChatCompletionContentPartUnionParam{OfImageURL: &imageBlock})
+
+					case filePart.MediaType == "audio/wav":
+						// Handle WAV audio files
+						base64Encoded := base64.StdEncoding.EncodeToString(filePart.Data)
+						audioBlock := openai.ChatCompletionContentPartInputAudioParam{
+							InputAudio: openai.ChatCompletionContentPartInputAudioInputAudioParam{
+								Data:   base64Encoded,
+								Format: "wav",
+							},
+						}
+						content = append(content, openai.ChatCompletionContentPartUnionParam{OfInputAudio: &audioBlock})
+
+					case filePart.MediaType == "audio/mpeg" || filePart.MediaType == "audio/mp3":
+						// Handle MP3 audio files
+						base64Encoded := base64.StdEncoding.EncodeToString(filePart.Data)
+						audioBlock := openai.ChatCompletionContentPartInputAudioParam{
+							InputAudio: openai.ChatCompletionContentPartInputAudioInputAudioParam{
+								Data:   base64Encoded,
+								Format: "mp3",
+							},
+						}
+						content = append(content, openai.ChatCompletionContentPartUnionParam{OfInputAudio: &audioBlock})
+
+					case filePart.MediaType == "application/pdf":
+						// Handle PDF files
+						dataStr := string(filePart.Data)
+
+						// Check if data looks like a file ID (starts with "file-")
+						if strings.HasPrefix(dataStr, "file-") {
+							fileBlock := openai.ChatCompletionContentPartFileParam{
+								File: openai.ChatCompletionContentPartFileFileParam{
+									FileID: param.NewOpt(dataStr),
+								},
+							}
+							content = append(content, openai.ChatCompletionContentPartUnionParam{OfFile: &fileBlock})
+						} else {
+							// Handle as base64 data
+							base64Encoded := base64.StdEncoding.EncodeToString(filePart.Data)
+							data := "data:application/pdf;base64," + base64Encoded
+
+							filename := filePart.Filename
+							if filename == "" {
+								// Generate default filename based on content index
+								filename = fmt.Sprintf("part-%d.pdf", len(content))
+							}
+
+							fileBlock := openai.ChatCompletionContentPartFileParam{
+								File: openai.ChatCompletionContentPartFileFileParam{
+									Filename: param.NewOpt(filename),
+									FileData: param.NewOpt(data),
+								},
+							}
+							content = append(content, openai.ChatCompletionContentPartUnionParam{OfFile: &fileBlock})
+						}
+
+					default:
+						warnings = append(warnings, fantasy.CallWarning{
+							Type:    fantasy.CallWarningTypeOther,
+							Message: fmt.Sprintf("file part media type %s not supported", filePart.MediaType),
+						})
+					}
+				}
+			}
+			messages = append(messages, openai.UserMessage(content))
+		case fantasy.MessageRoleAssistant:
+			// simple assistant message just text content
+			if len(msg.Content) == 1 && msg.Content[0].GetType() == fantasy.ContentTypeText {
+				textPart, ok := fantasy.AsContentType[fantasy.TextPart](msg.Content[0])
+				if !ok {
+					warnings = append(warnings, fantasy.CallWarning{
+						Type:    fantasy.CallWarningTypeOther,
+						Message: "assistant message text part does not have the right type",
+					})
+					continue
+				}
+				messages = append(messages, openai.AssistantMessage(textPart.Text))
+				continue
+			}
+			assistantMsg := openai.ChatCompletionAssistantMessageParam{
+				Role: "assistant",
+			}
+			for _, c := range msg.Content {
+				switch c.GetType() {
+				case fantasy.ContentTypeText:
+					textPart, ok := fantasy.AsContentType[fantasy.TextPart](c)
+					if !ok {
+						warnings = append(warnings, fantasy.CallWarning{
+							Type:    fantasy.CallWarningTypeOther,
+							Message: "assistant message text part does not have the right type",
+						})
+						continue
+					}
+					assistantMsg.Content = openai.ChatCompletionAssistantMessageParamContentUnion{
+						OfString: param.NewOpt(textPart.Text),
+					}
+				case fantasy.ContentTypeToolCall:
+					toolCallPart, ok := fantasy.AsContentType[fantasy.ToolCallPart](c)
+					if !ok {
+						warnings = append(warnings, fantasy.CallWarning{
+							Type:    fantasy.CallWarningTypeOther,
+							Message: "assistant message tool part does not have the right type",
+						})
+						continue
+					}
+					assistantMsg.ToolCalls = append(assistantMsg.ToolCalls,
+						openai.ChatCompletionMessageToolCallUnionParam{
+							OfFunction: &openai.ChatCompletionMessageFunctionToolCallParam{
+								ID:   toolCallPart.ToolCallID,
+								Type: "function",
+								Function: openai.ChatCompletionMessageFunctionToolCallFunctionParam{
+									Name:      toolCallPart.ToolName,
+									Arguments: toolCallPart.Input,
+								},
+							},
+						})
+				}
+			}
+			messages = append(messages, openai.ChatCompletionMessageParamUnion{
+				OfAssistant: &assistantMsg,
+			})
+		case fantasy.MessageRoleTool:
+			for _, c := range msg.Content {
+				if c.GetType() != fantasy.ContentTypeToolResult {
+					warnings = append(warnings, fantasy.CallWarning{
+						Type:    fantasy.CallWarningTypeOther,
+						Message: "tool message can only have tool result content",
+					})
+					continue
+				}
+
+				toolResultPart, ok := fantasy.AsContentType[fantasy.ToolResultPart](c)
+				if !ok {
+					warnings = append(warnings, fantasy.CallWarning{
+						Type:    fantasy.CallWarningTypeOther,
+						Message: "tool message result part does not have the right type",
+					})
+					continue
+				}
+
+				switch toolResultPart.Output.GetType() {
+				case fantasy.ToolResultContentTypeText:
+					output, ok := fantasy.AsToolResultOutputType[fantasy.ToolResultOutputContentText](toolResultPart.Output)
+					if !ok {
+						warnings = append(warnings, fantasy.CallWarning{
+							Type:    fantasy.CallWarningTypeOther,
+							Message: "tool result output does not have the right type",
+						})
+						continue
+					}
+					messages = append(messages, openai.ToolMessage(output.Text, toolResultPart.ToolCallID))
+				case fantasy.ToolResultContentTypeError:
+					// TODO: check if better handling is needed
+					output, ok := fantasy.AsToolResultOutputType[fantasy.ToolResultOutputContentError](toolResultPart.Output)
+					if !ok {
+						warnings = append(warnings, fantasy.CallWarning{
+							Type:    fantasy.CallWarningTypeOther,
+							Message: "tool result output does not have the right type",
+						})
+						continue
+					}
+					messages = append(messages, openai.ToolMessage(output.Error.Error(), toolResultPart.ToolCallID))
+				}
+			}
+		}
+	}
+	return messages, warnings
+}

providers/openai/openai_test.go 🔗

@@ -30,7 +30,7 @@ func TestToOpenAiPrompt_SystemMessages(t *testing.T) {
 			},
 		}
 
-		messages, warnings := toPrompt(prompt)
+		messages, warnings := DefaultToPrompt(prompt, "openai", "gpt-5")
 
 		require.Empty(t, warnings)
 		require.Len(t, messages, 1)
@@ -50,7 +50,7 @@ func TestToOpenAiPrompt_SystemMessages(t *testing.T) {
 			},
 		}
 
-		messages, warnings := toPrompt(prompt)
+		messages, warnings := DefaultToPrompt(prompt, "openai", "gpt-5")
 
 		require.Len(t, warnings, 1)
 		require.Contains(t, warnings[0].Message, "system prompt has no text parts")
@@ -70,7 +70,7 @@ func TestToOpenAiPrompt_SystemMessages(t *testing.T) {
 			},
 		}
 
-		messages, warnings := toPrompt(prompt)
+		messages, warnings := DefaultToPrompt(prompt, "openai", "gpt-5")
 
 		require.Empty(t, warnings)
 		require.Len(t, messages, 1)
@@ -96,7 +96,7 @@ func TestToOpenAiPrompt_UserMessages(t *testing.T) {
 			},
 		}
 
-		messages, warnings := toPrompt(prompt)
+		messages, warnings := DefaultToPrompt(prompt, "openai", "gpt-5")
 
 		require.Empty(t, warnings)
 		require.Len(t, messages, 1)
@@ -123,7 +123,7 @@ func TestToOpenAiPrompt_UserMessages(t *testing.T) {
 			},
 		}
 
-		messages, warnings := toPrompt(prompt)
+		messages, warnings := DefaultToPrompt(prompt, "openai", "gpt-5")
 
 		require.Empty(t, warnings)
 		require.Len(t, messages, 1)
@@ -165,7 +165,7 @@ func TestToOpenAiPrompt_UserMessages(t *testing.T) {
 			},
 		}
 
-		messages, warnings := toPrompt(prompt)
+		messages, warnings := DefaultToPrompt(prompt, "openai", "gpt-5")
 
 		require.Empty(t, warnings)
 		require.Len(t, messages, 1)
@@ -200,7 +200,7 @@ func TestToOpenAiPrompt_FileParts(t *testing.T) {
 			},
 		}
 
-		messages, warnings := toPrompt(prompt)
+		messages, warnings := DefaultToPrompt(prompt, "openai", "gpt-5")
 
 		require.Len(t, warnings, 1)
 		require.Contains(t, warnings[0].Message, "file part media type application/something not supported")
@@ -223,7 +223,7 @@ func TestToOpenAiPrompt_FileParts(t *testing.T) {
 			},
 		}
 
-		messages, warnings := toPrompt(prompt)
+		messages, warnings := DefaultToPrompt(prompt, "openai", "gpt-5")
 
 		require.Empty(t, warnings)
 		require.Len(t, messages, 1)
@@ -256,7 +256,7 @@ func TestToOpenAiPrompt_FileParts(t *testing.T) {
 			},
 		}
 
-		messages, warnings := toPrompt(prompt)
+		messages, warnings := DefaultToPrompt(prompt, "openai", "gpt-5")
 
 		require.Empty(t, warnings)
 		require.Len(t, messages, 1)
@@ -284,7 +284,7 @@ func TestToOpenAiPrompt_FileParts(t *testing.T) {
 			},
 		}
 
-		messages, warnings := toPrompt(prompt)
+		messages, warnings := DefaultToPrompt(prompt, "openai", "gpt-5")
 
 		require.Empty(t, warnings)
 		require.Len(t, messages, 1)
@@ -313,7 +313,7 @@ func TestToOpenAiPrompt_FileParts(t *testing.T) {
 			},
 		}
 
-		messages, warnings := toPrompt(prompt)
+		messages, warnings := DefaultToPrompt(prompt, "openai", "gpt-5")
 
 		require.Empty(t, warnings)
 		require.Len(t, messages, 1)
@@ -347,7 +347,7 @@ func TestToOpenAiPrompt_FileParts(t *testing.T) {
 			},
 		}
 
-		messages, warnings := toPrompt(prompt)
+		messages, warnings := DefaultToPrompt(prompt, "openai", "gpt-5")
 
 		require.Empty(t, warnings)
 		require.Len(t, messages, 1)
@@ -376,7 +376,7 @@ func TestToOpenAiPrompt_FileParts(t *testing.T) {
 			},
 		}
 
-		messages, warnings := toPrompt(prompt)
+		messages, warnings := DefaultToPrompt(prompt, "openai", "gpt-5")
 
 		require.Empty(t, warnings)
 		require.Len(t, messages, 1)
@@ -406,7 +406,7 @@ func TestToOpenAiPrompt_FileParts(t *testing.T) {
 			},
 		}
 
-		messages, warnings := toPrompt(prompt)
+		messages, warnings := DefaultToPrompt(prompt, "openai", "gpt-5")
 
 		require.Empty(t, warnings)
 		require.Len(t, messages, 1)
@@ -455,7 +455,7 @@ func TestToOpenAiPrompt_ToolCalls(t *testing.T) {
 			},
 		}
 
-		messages, warnings := toPrompt(prompt)
+		messages, warnings := DefaultToPrompt(prompt, "openai", "gpt-5")
 
 		require.Empty(t, warnings)
 		require.Len(t, messages, 2)
@@ -502,7 +502,7 @@ func TestToOpenAiPrompt_ToolCalls(t *testing.T) {
 			},
 		}
 
-		messages, warnings := toPrompt(prompt)
+		messages, warnings := DefaultToPrompt(prompt, "openai", "gpt-5")
 
 		require.Empty(t, warnings)
 		require.Len(t, messages, 2)
@@ -536,7 +536,7 @@ func TestToOpenAiPrompt_AssistantMessages(t *testing.T) {
 			},
 		}
 
-		messages, warnings := toPrompt(prompt)
+		messages, warnings := DefaultToPrompt(prompt, "openai", "gpt-5")
 
 		require.Empty(t, warnings)
 		require.Len(t, messages, 1)
@@ -566,7 +566,7 @@ func TestToOpenAiPrompt_AssistantMessages(t *testing.T) {
 			},
 		}
 
-		messages, warnings := toPrompt(prompt)
+		messages, warnings := DefaultToPrompt(prompt, "openai", "gpt-5")
 
 		require.Empty(t, warnings)
 		require.Len(t, messages, 1)

providers/openai/responses_language_model.go 🔗

@@ -474,7 +474,7 @@ func toResponsesPrompt(prompt fantasy.Prompt, systemMessageMode string) (respons
 
 					input = append(input, responses.ResponseInputItemParamOfFunctionCall(string(inputJSON), toolCallPart.ToolCallID, toolCallPart.ToolName))
 				case fantasy.ContentTypeReasoning:
-					reasoningMetadata := getReasoningMetadata(c.Options())
+					reasoningMetadata := GetReasoningMetadata(c.Options())
 					if reasoningMetadata == nil || reasoningMetadata.ItemID == "" {
 						continue
 					}
@@ -753,15 +753,12 @@ func (o responsesLanguageModel) Generate(ctx context.Context, call fantasy.Call)
 				summaries = []responses.ResponseReasoningItemSummary{{Type: "summary_text", Text: ""}}
 			}
 
-			var summaryParts []string
-
 			for _, s := range summaries {
 				metadata.Summary = append(metadata.Summary, s.Text)
-				summaryParts = append(summaryParts, s.Text)
 			}
 
 			content = append(content, fantasy.ReasoningContent{
-				Text: strings.Join(summaryParts, "\n"),
+				Text: strings.Join(metadata.Summary, "\n"),
 				ProviderMetadata: fantasy.ProviderMetadata{
 					Name: metadata,
 				},
@@ -1039,7 +1036,8 @@ func (o responsesLanguageModel) Stream(ctx context.Context, call fantasy.Call) (
 	}, nil
 }
 
-func getReasoningMetadata(providerOptions fantasy.ProviderOptions) *ResponsesReasoningMetadata {
+// GetReasoningMetadata extracts reasoning metadata from provider options for responses models.
+func GetReasoningMetadata(providerOptions fantasy.ProviderOptions) *ResponsesReasoningMetadata {
 	if openaiResponsesOptions, ok := providerOptions[Name]; ok {
 		if reasoning, ok := openaiResponsesOptions.(*ResponsesReasoningMetadata); ok {
 			return reasoning

providers/openrouter/language_model_hooks.go 🔗

@@ -1,12 +1,15 @@
 package openrouter
 
 import (
+	"encoding/base64"
 	"encoding/json"
 	"fmt"
 	"maps"
+	"strings"
 
 	"charm.land/fantasy"
 	"charm.land/fantasy/providers/anthropic"
+	"charm.land/fantasy/providers/openai"
 	openaisdk "github.com/openai/openai-go/v2"
 	"github.com/openai/openai-go/v2/packages/param"
 )
@@ -68,56 +71,99 @@ func languagePrepareModelCall(_ fantasy.LanguageModel, params *openaisdk.ChatCom
 }
 
 func languageModelExtraContent(choice openaisdk.ChatCompletionChoice) []fantasy.Content {
-	var content []fantasy.Content
+	content := make([]fantasy.Content, 0)
 	reasoningData := ReasoningData{}
 	err := json.Unmarshal([]byte(choice.Message.RawJSON()), &reasoningData)
 	if err != nil {
 		return content
 	}
+	type anthropicReasoningBlock struct {
+		text     string
+		metadata *anthropic.ReasoningOptionMetadata
+	}
+
+	responsesReasoningBlocks := make([]openai.ResponsesReasoningMetadata, 0)
+	anthropicReasoningBlocks := make([]anthropicReasoningBlock, 0)
+	otherReasoning := make([]string, 0)
 	for _, detail := range reasoningData.ReasoningDetails {
-		var metadata fantasy.ProviderMetadata
+		if strings.HasPrefix(detail.Format, "openai-responses") || strings.HasPrefix(detail.Format, "xai-responses") {
+			var thinkingBlock openai.ResponsesReasoningMetadata
+			if len(responsesReasoningBlocks)-1 >= detail.Index {
+				thinkingBlock = responsesReasoningBlocks[detail.Index]
+			} else {
+				thinkingBlock = openai.ResponsesReasoningMetadata{}
+				responsesReasoningBlocks = append(responsesReasoningBlocks, thinkingBlock)
+			}
 
-		if detail.Signature != "" {
-			metadata = fantasy.ProviderMetadata{
-				Name: &ReasoningMetadata{
-					Signature: detail.Signature,
-				},
-				anthropic.Name: &anthropic.ReasoningOptionMetadata{
-					Signature: detail.Signature,
-				},
+			switch detail.Type {
+			case "reasoning.summary":
+				thinkingBlock.Summary = append(thinkingBlock.Summary, detail.Summary)
+			case "reasoning.encrypted":
+				thinkingBlock.EncryptedContent = &detail.Data
+			}
+			if detail.ID != "" {
+				thinkingBlock.ItemID = detail.ID
 			}
+
+			responsesReasoningBlocks[detail.Index] = thinkingBlock
+			continue
 		}
-		switch detail.Type {
-		case "reasoning.text":
-			content = append(content, fantasy.ReasoningContent{
-				Text:             detail.Text,
-				ProviderMetadata: metadata,
-			})
-		case "reasoning.summary":
-			content = append(content, fantasy.ReasoningContent{
-				Text:             detail.Summary,
-				ProviderMetadata: metadata,
-			})
-		case "reasoning.encrypted":
-			content = append(content, fantasy.ReasoningContent{
-				Text:             "[REDACTED]",
-				ProviderMetadata: metadata,
+
+		if strings.HasPrefix(detail.Format, "anthropic-claude") {
+			anthropicReasoningBlocks = append(anthropicReasoningBlocks, anthropicReasoningBlock{
+				text: detail.Text,
+				metadata: &anthropic.ReasoningOptionMetadata{
+					Signature: detail.Signature,
+				},
 			})
+			continue
+		}
+
+		otherReasoning = append(otherReasoning, detail.Text)
+	}
+
+	for _, block := range responsesReasoningBlocks {
+		if len(block.Summary) == 0 {
+			block.Summary = []string{""}
 		}
+		content = append(content, fantasy.ReasoningContent{
+			Text: strings.Join(block.Summary, "\n"),
+			ProviderMetadata: fantasy.ProviderMetadata{
+				openai.Name: &block,
+			},
+		})
+	}
+	for _, block := range anthropicReasoningBlocks {
+		content = append(content, fantasy.ReasoningContent{
+			Text: block.text,
+			ProviderMetadata: fantasy.ProviderMetadata{
+				anthropic.Name: block.metadata,
+			},
+		})
+	}
+
+	for _, reasoning := range otherReasoning {
+		content = append(content, fantasy.ReasoningContent{
+			Text: reasoning,
+		})
 	}
 	return content
 }
 
-func extractReasoningContext(ctx map[string]any) bool {
+type currentReasoningState struct {
+	metadata *openai.ResponsesReasoningMetadata
+}
+
+func extractReasoningContext(ctx map[string]any) *currentReasoningState {
 	reasoningStarted, ok := ctx[reasoningStartedCtx]
 	if !ok {
-		return false
+		return nil
 	}
-	b, ok := reasoningStarted.(bool)
+	state, ok := reasoningStarted.(*currentReasoningState)
 	if !ok {
-		return false
+		return nil
 	}
-	return b
+	return state
 }
 
 func languageModelStreamExtra(chunk openaisdk.ChatCompletionChunk, yield func(fantasy.StreamPart) bool, ctx map[string]any) (map[string]any, bool) {
@@ -125,76 +171,153 @@ func languageModelStreamExtra(chunk openaisdk.ChatCompletionChunk, yield func(fa
 		return ctx, true
 	}
 
-	reasoningStarted := extractReasoningContext(ctx)
+	currentState := extractReasoningContext(ctx)
 
-	for inx, choice := range chunk.Choices {
-		reasoningData := ReasoningData{}
-		err := json.Unmarshal([]byte(choice.Delta.RawJSON()), &reasoningData)
-		if err != nil {
-			yield(fantasy.StreamPart{
-				Type:  fantasy.StreamPartTypeError,
-				Error: fantasy.NewAIError("Unexpected", "error unmarshalling delta", err),
-			})
-			return ctx, false
+	inx := 0
+	choice := chunk.Choices[inx]
+	reasoningData := ReasoningData{}
+	err := json.Unmarshal([]byte(choice.Delta.RawJSON()), &reasoningData)
+	if err != nil {
+		yield(fantasy.StreamPart{
+			Type:  fantasy.StreamPartTypeError,
+			Error: fantasy.NewAIError("Unexpected", "error unmarshalling delta", err),
+		})
+		return ctx, false
+	}
+
+	// Reasoning Start
+	if currentState == nil {
+		if len(reasoningData.ReasoningDetails) == 0 {
+			return ctx, true
 		}
 
-		emitEvent := func(reasoningContent string, signature string) bool {
-			if !reasoningStarted {
+		var metadata fantasy.ProviderMetadata
+		currentState = &currentReasoningState{}
+
+		detail := reasoningData.ReasoningDetails[0]
+		if strings.HasPrefix(detail.Format, "openai-responses") || strings.HasPrefix(detail.Format, "xai-responses") {
+			currentState.metadata = &openai.ResponsesReasoningMetadata{
+				Summary: []string{detail.Summary},
+			}
+			metadata = fantasy.ProviderMetadata{
+				openai.Name: currentState.metadata,
+			}
+			// There was no summary just thinking we just send this as if it ended alredy
+			if detail.Data != "" {
 				shouldContinue := yield(fantasy.StreamPart{
-					Type: fantasy.StreamPartTypeReasoningStart,
-					ID:   fmt.Sprintf("%d", inx),
+					Type:             fantasy.StreamPartTypeReasoningStart,
+					ID:               fmt.Sprintf("%d", inx),
+					Delta:            detail.Summary,
+					ProviderMetadata: metadata,
 				})
 				if !shouldContinue {
-					return false
+					return ctx, false
 				}
-			}
-
-			var metadata fantasy.ProviderMetadata
-
-			if signature != "" {
-				metadata = fantasy.ProviderMetadata{
-					Name: &ReasoningMetadata{
-						Signature: signature,
-					},
-					anthropic.Name: &anthropic.ReasoningOptionMetadata{
-						Signature: signature,
+				return ctx, yield(fantasy.StreamPart{
+					Type: fantasy.StreamPartTypeReasoningEnd,
+					ID:   fmt.Sprintf("%d", inx),
+					ProviderMetadata: fantasy.ProviderMetadata{
+						openai.Name: &openai.ResponsesReasoningMetadata{
+							Summary:          []string{detail.Summary},
+							EncryptedContent: &detail.Data,
+							ItemID:           detail.ID,
+						},
 					},
-				}
+				})
 			}
+		}
 
-			return yield(fantasy.StreamPart{
+		ctx[reasoningStartedCtx] = currentState
+		return ctx, yield(fantasy.StreamPart{
+			Type:             fantasy.StreamPartTypeReasoningStart,
+			ID:               fmt.Sprintf("%d", inx),
+			Delta:            detail.Summary,
+			ProviderMetadata: metadata,
+		})
+	}
+	if len(reasoningData.ReasoningDetails) == 0 {
+		// this means its a model different from openai/anthropic that ended reasoning
+		if choice.Delta.Content != "" || len(choice.Delta.ToolCalls) > 0 {
+			ctx[reasoningStartedCtx] = nil
+			return ctx, yield(fantasy.StreamPart{
+				Type: fantasy.StreamPartTypeReasoningEnd,
+				ID:   fmt.Sprintf("%d", inx),
+			})
+		}
+		return ctx, true
+	}
+	// Reasoning delta
+	detail := reasoningData.ReasoningDetails[0]
+	if strings.HasPrefix(detail.Format, "openai-responses") || strings.HasPrefix(detail.Format, "xai-responses") {
+		// Reasoning has ended
+		if detail.Data != "" {
+			currentState.metadata.EncryptedContent = &detail.Data
+			currentState.metadata.ItemID = detail.ID
+			ctx[reasoningStartedCtx] = nil
+			return ctx, yield(fantasy.StreamPart{
+				Type: fantasy.StreamPartTypeReasoningEnd,
+				ID:   fmt.Sprintf("%d", inx),
+				ProviderMetadata: fantasy.ProviderMetadata{
+					openai.Name: currentState.metadata,
+				},
+			})
+		}
+		var textDelta string
+		// add to existing summary
+		if len(currentState.metadata.Summary)-1 >= detail.Index {
+			currentState.metadata.Summary[detail.Index] += detail.Summary
+			textDelta = detail.Summary
+		} else { // add new summary
+			currentState.metadata.Summary = append(currentState.metadata.Summary, detail.Summary)
+			textDelta = "\n" + detail.Summary
+		}
+		ctx[reasoningStartedCtx] = currentState
+		return ctx, yield(fantasy.StreamPart{
+			Type:  fantasy.StreamPartTypeReasoningDelta,
+			ID:    fmt.Sprintf("%d", inx),
+			Delta: textDelta,
+			ProviderMetadata: fantasy.ProviderMetadata{
+				openai.Name: currentState.metadata,
+			},
+		})
+	}
+	if strings.HasPrefix(detail.Format, "anthropic-claude") {
+		// the reasoning has ended
+		if detail.Signature != "" {
+			metadata := fantasy.ProviderMetadata{
+				anthropic.Name: &anthropic.ReasoningOptionMetadata{
+					Signature: detail.Signature,
+				},
+			}
+			// initial update
+			shouldContinue := yield(fantasy.StreamPart{
 				Type:             fantasy.StreamPartTypeReasoningDelta,
 				ID:               fmt.Sprintf("%d", inx),
-				Delta:            reasoningContent,
+				Delta:            detail.Text,
 				ProviderMetadata: metadata,
 			})
-		}
-		if len(reasoningData.ReasoningDetails) > 0 {
-			for _, detail := range reasoningData.ReasoningDetails {
-				if !reasoningStarted {
-					ctx[reasoningStartedCtx] = true
-				}
-				switch detail.Type {
-				case "reasoning.text":
-					return ctx, emitEvent(detail.Text, detail.Signature)
-				case "reasoning.summary":
-					return ctx, emitEvent(detail.Summary, detail.Signature)
-				case "reasoning.encrypted":
-					return ctx, emitEvent("[REDACTED]", detail.Signature)
-				}
+			if !shouldContinue {
+				return ctx, false
 			}
-		} else if reasoningData.Reasoning != "" {
-			return ctx, emitEvent(reasoningData.Reasoning, "")
-		}
-		if reasoningStarted && (choice.Delta.Content != "" || len(choice.Delta.ToolCalls) > 0) {
-			ctx[reasoningStartedCtx] = false
+			ctx[reasoningStartedCtx] = nil
 			return ctx, yield(fantasy.StreamPart{
 				Type: fantasy.StreamPartTypeReasoningEnd,
 				ID:   fmt.Sprintf("%d", inx),
 			})
 		}
+
+		return ctx, yield(fantasy.StreamPart{
+			Type:  fantasy.StreamPartTypeReasoningDelta,
+			ID:    fmt.Sprintf("%d", inx),
+			Delta: detail.Text,
+		})
 	}
-	return ctx, true
+
+	return ctx, yield(fantasy.StreamPart{
+		Type:  fantasy.StreamPartTypeReasoningDelta,
+		ID:    fmt.Sprintf("%d", inx),
+		Delta: detail.Text,
+	})
 }
 
 func languageModelUsage(response openaisdk.ChatCompletion) (fantasy.Usage, fantasy.ProviderOptionsData) {
@@ -267,3 +390,520 @@ func languageModelStreamUsage(chunk openaisdk.ChatCompletionChunk, _ map[string]
 		Name: streamProviderMetadata,
 	}
 }
+
+func languageModelToPrompt(prompt fantasy.Prompt, _, model string) ([]openaisdk.ChatCompletionMessageParamUnion, []fantasy.CallWarning) {
+	var messages []openaisdk.ChatCompletionMessageParamUnion
+	var warnings []fantasy.CallWarning
+	for _, msg := range prompt {
+		switch msg.Role {
+		case fantasy.MessageRoleSystem:
+			var systemPromptParts []string
+			for _, c := range msg.Content {
+				if c.GetType() != fantasy.ContentTypeText {
+					warnings = append(warnings, fantasy.CallWarning{
+						Type:    fantasy.CallWarningTypeOther,
+						Message: "system prompt can only have text content",
+					})
+					continue
+				}
+				textPart, ok := fantasy.AsContentType[fantasy.TextPart](c)
+				if !ok {
+					warnings = append(warnings, fantasy.CallWarning{
+						Type:    fantasy.CallWarningTypeOther,
+						Message: "system prompt text part does not have the right type",
+					})
+					continue
+				}
+				text := textPart.Text
+				if strings.TrimSpace(text) != "" {
+					systemPromptParts = append(systemPromptParts, textPart.Text)
+				}
+			}
+			if len(systemPromptParts) == 0 {
+				warnings = append(warnings, fantasy.CallWarning{
+					Type:    fantasy.CallWarningTypeOther,
+					Message: "system prompt has no text parts",
+				})
+				continue
+			}
+			systemMsg := openaisdk.SystemMessage(strings.Join(systemPromptParts, "\n"))
+			anthropicCache := anthropic.GetCacheControl(msg.ProviderOptions)
+			if anthropicCache != nil {
+				systemMsg.OfSystem.SetExtraFields(map[string]any{
+					"cache_control": map[string]string{
+						"type": anthropicCache.Type,
+					},
+				})
+			}
+			messages = append(messages, systemMsg)
+		case fantasy.MessageRoleUser:
+			// simple user message just text content
+			if len(msg.Content) == 1 && msg.Content[0].GetType() == fantasy.ContentTypeText {
+				textPart, ok := fantasy.AsContentType[fantasy.TextPart](msg.Content[0])
+				if !ok {
+					warnings = append(warnings, fantasy.CallWarning{
+						Type:    fantasy.CallWarningTypeOther,
+						Message: "user message text part does not have the right type",
+					})
+					continue
+				}
+				userMsg := openaisdk.UserMessage(textPart.Text)
+
+				anthropicCache := anthropic.GetCacheControl(msg.ProviderOptions)
+				if anthropicCache != nil {
+					userMsg.OfUser.SetExtraFields(map[string]any{
+						"cache_control": map[string]string{
+							"type": anthropicCache.Type,
+						},
+					})
+				}
+				messages = append(messages, userMsg)
+				continue
+			}
+			// text content and attachments
+			// for now we only support image content later we need to check
+			// TODO: add the supported media types to the language model so we
+			//  can use that to validate the data here.
+			var content []openaisdk.ChatCompletionContentPartUnionParam
+			for i, c := range msg.Content {
+				isLastPart := i == len(msg.Content)-1
+				cacheControl := anthropic.GetCacheControl(c.Options())
+				if cacheControl == nil && isLastPart {
+					cacheControl = anthropic.GetCacheControl(msg.ProviderOptions)
+				}
+				switch c.GetType() {
+				case fantasy.ContentTypeText:
+					textPart, ok := fantasy.AsContentType[fantasy.TextPart](c)
+					if !ok {
+						warnings = append(warnings, fantasy.CallWarning{
+							Type:    fantasy.CallWarningTypeOther,
+							Message: "user message text part does not have the right type",
+						})
+						continue
+					}
+					part := openaisdk.ChatCompletionContentPartUnionParam{
+						OfText: &openaisdk.ChatCompletionContentPartTextParam{
+							Text: textPart.Text,
+						},
+					}
+					if cacheControl != nil {
+						part.OfText.SetExtraFields(map[string]any{
+							"cache_control": map[string]string{
+								"type": cacheControl.Type,
+							},
+						})
+					}
+					content = append(content, part)
+				case fantasy.ContentTypeFile:
+					filePart, ok := fantasy.AsContentType[fantasy.FilePart](c)
+					if !ok {
+						warnings = append(warnings, fantasy.CallWarning{
+							Type:    fantasy.CallWarningTypeOther,
+							Message: "user message file part does not have the right type",
+						})
+						continue
+					}
+
+					switch {
+					case strings.HasPrefix(filePart.MediaType, "image/"):
+						// Handle image files
+						base64Encoded := base64.StdEncoding.EncodeToString(filePart.Data)
+						data := "data:" + filePart.MediaType + ";base64," + base64Encoded
+						imageURL := openaisdk.ChatCompletionContentPartImageImageURLParam{URL: data}
+
+						// Check for provider-specific options like image detail
+						if providerOptions, ok := filePart.ProviderOptions[Name]; ok {
+							if detail, ok := providerOptions.(*openai.ProviderFileOptions); ok {
+								imageURL.Detail = detail.ImageDetail
+							}
+						}
+
+						imageBlock := openaisdk.ChatCompletionContentPartImageParam{ImageURL: imageURL}
+						if cacheControl != nil {
+							imageBlock.SetExtraFields(map[string]any{
+								"cache_control": map[string]string{
+									"type": cacheControl.Type,
+								},
+							})
+						}
+						content = append(content, openaisdk.ChatCompletionContentPartUnionParam{OfImageURL: &imageBlock})
+
+					case filePart.MediaType == "audio/wav":
+						// Handle WAV audio files
+						base64Encoded := base64.StdEncoding.EncodeToString(filePart.Data)
+						audioBlock := openaisdk.ChatCompletionContentPartInputAudioParam{
+							InputAudio: openaisdk.ChatCompletionContentPartInputAudioInputAudioParam{
+								Data:   base64Encoded,
+								Format: "wav",
+							},
+						}
+						if cacheControl != nil {
+							audioBlock.SetExtraFields(map[string]any{
+								"cache_control": map[string]string{
+									"type": cacheControl.Type,
+								},
+							})
+						}
+						content = append(content, openaisdk.ChatCompletionContentPartUnionParam{OfInputAudio: &audioBlock})
+
+					case filePart.MediaType == "audio/mpeg" || filePart.MediaType == "audio/mp3":
+						// Handle MP3 audio files
+						base64Encoded := base64.StdEncoding.EncodeToString(filePart.Data)
+						audioBlock := openaisdk.ChatCompletionContentPartInputAudioParam{
+							InputAudio: openaisdk.ChatCompletionContentPartInputAudioInputAudioParam{
+								Data:   base64Encoded,
+								Format: "mp3",
+							},
+						}
+						if cacheControl != nil {
+							audioBlock.SetExtraFields(map[string]any{
+								"cache_control": map[string]string{
+									"type": cacheControl.Type,
+								},
+							})
+						}
+						content = append(content, openaisdk.ChatCompletionContentPartUnionParam{OfInputAudio: &audioBlock})
+
+					case filePart.MediaType == "application/pdf":
+						// Handle PDF files
+						dataStr := string(filePart.Data)
+
+						// Check if data looks like a file ID (starts with "file-")
+						if strings.HasPrefix(dataStr, "file-") {
+							fileBlock := openaisdk.ChatCompletionContentPartFileParam{
+								File: openaisdk.ChatCompletionContentPartFileFileParam{
+									FileID: param.NewOpt(dataStr),
+								},
+							}
+
+							if cacheControl != nil {
+								fileBlock.SetExtraFields(map[string]any{
+									"cache_control": map[string]string{
+										"type": cacheControl.Type,
+									},
+								})
+							}
+							content = append(content, openaisdk.ChatCompletionContentPartUnionParam{OfFile: &fileBlock})
+						} else {
+							// Handle as base64 data
+							base64Encoded := base64.StdEncoding.EncodeToString(filePart.Data)
+							data := "data:application/pdf;base64," + base64Encoded
+
+							filename := filePart.Filename
+							if filename == "" {
+								// Generate default filename based on content index
+								filename = fmt.Sprintf("part-%d.pdf", len(content))
+							}
+
+							fileBlock := openaisdk.ChatCompletionContentPartFileParam{
+								File: openaisdk.ChatCompletionContentPartFileFileParam{
+									Filename: param.NewOpt(filename),
+									FileData: param.NewOpt(data),
+								},
+							}
+							if cacheControl != nil {
+								fileBlock.SetExtraFields(map[string]any{
+									"cache_control": map[string]string{
+										"type": cacheControl.Type,
+									},
+								})
+							}
+							content = append(content, openaisdk.ChatCompletionContentPartUnionParam{OfFile: &fileBlock})
+						}
+
+					default:
+						warnings = append(warnings, fantasy.CallWarning{
+							Type:    fantasy.CallWarningTypeOther,
+							Message: fmt.Sprintf("file part media type %s not supported", filePart.MediaType),
+						})
+					}
+				}
+			}
+			messages = append(messages, openaisdk.UserMessage(content))
+		case fantasy.MessageRoleAssistant:
+			// simple assistant message just text content
+			if len(msg.Content) == 1 && msg.Content[0].GetType() == fantasy.ContentTypeText {
+				textPart, ok := fantasy.AsContentType[fantasy.TextPart](msg.Content[0])
+				if !ok {
+					warnings = append(warnings, fantasy.CallWarning{
+						Type:    fantasy.CallWarningTypeOther,
+						Message: "assistant message text part does not have the right type",
+					})
+					continue
+				}
+
+				assistantMsg := openaisdk.AssistantMessage(textPart.Text)
+				anthropicCache := anthropic.GetCacheControl(msg.ProviderOptions)
+				if anthropicCache != nil {
+					assistantMsg.OfAssistant.SetExtraFields(map[string]any{
+						"cache_control": map[string]string{
+							"type": anthropicCache.Type,
+						},
+					})
+				}
+				messages = append(messages, assistantMsg)
+				continue
+			}
+			assistantMsg := openaisdk.ChatCompletionAssistantMessageParam{
+				Role: "assistant",
+			}
+			for i, c := range msg.Content {
+				isLastPart := i == len(msg.Content)-1
+				cacheControl := anthropic.GetCacheControl(c.Options())
+				if cacheControl == nil && isLastPart {
+					cacheControl = anthropic.GetCacheControl(msg.ProviderOptions)
+				}
+				switch c.GetType() {
+				case fantasy.ContentTypeText:
+					textPart, ok := fantasy.AsContentType[fantasy.TextPart](c)
+					if !ok {
+						warnings = append(warnings, fantasy.CallWarning{
+							Type:    fantasy.CallWarningTypeOther,
+							Message: "assistant message text part does not have the right type",
+						})
+						continue
+					}
+					// there is some text already there
+					if assistantMsg.Content.OfString.Valid() {
+						textPart.Text = assistantMsg.Content.OfString.Value + "\n" + textPart.Text
+					}
+					assistantMsg.Content = openaisdk.ChatCompletionAssistantMessageParamContentUnion{
+						OfString: param.NewOpt(textPart.Text),
+					}
+					if cacheControl != nil {
+						assistantMsg.Content.SetExtraFields(map[string]any{
+							"cache_control": map[string]string{
+								"type": cacheControl.Type,
+							},
+						})
+					}
+				case fantasy.ContentTypeReasoning:
+					reasoningPart, ok := fantasy.AsContentType[fantasy.ReasoningPart](c)
+					if !ok {
+						warnings = append(warnings, fantasy.CallWarning{
+							Type:    fantasy.CallWarningTypeOther,
+							Message: "assistant message reasoning part does not have the right type",
+						})
+						continue
+					}
+					var reasoningDetails []ReasoningDetail
+					switch {
+					case strings.HasPrefix(model, "anthropic/") && reasoningPart.Text != "":
+						metadata := anthropic.GetReasoningMetadata(reasoningPart.Options())
+						if metadata == nil {
+							text := fmt.Sprintf("<thoughts>%s</thoughts>", reasoningPart.Text)
+							if assistantMsg.Content.OfString.Valid() {
+								text = assistantMsg.Content.OfString.Value + "\n" + text
+							}
+							// this reasoning did not come from anthropic just add a text content
+							assistantMsg.Content = openaisdk.ChatCompletionAssistantMessageParamContentUnion{
+								OfString: param.NewOpt(text),
+							}
+							if cacheControl != nil {
+								assistantMsg.Content.SetExtraFields(map[string]any{
+									"cache_control": map[string]string{
+										"type": cacheControl.Type,
+									},
+								})
+							}
+							continue
+						}
+						reasoningDetails = append(reasoningDetails, ReasoningDetail{
+							Format:    "anthropic-claude-v1",
+							Type:      "reasoning.text",
+							Text:      reasoningPart.Text,
+							Signature: metadata.Signature,
+						})
+						data, _ := json.Marshal(reasoningDetails)
+						reasoningDetailsMap := []map[string]any{}
+						_ = json.Unmarshal(data, &reasoningDetailsMap)
+						assistantMsg.SetExtraFields(map[string]any{
+							"reasoning_details": reasoningDetailsMap,
+							"reasoning":         reasoningPart.Text,
+						})
+					case strings.HasPrefix(model, "openai/"):
+						metadata := openai.GetReasoningMetadata(reasoningPart.Options())
+						if metadata == nil {
+							text := fmt.Sprintf("<thoughts>%s</thoughts>", reasoningPart.Text)
+							if assistantMsg.Content.OfString.Valid() {
+								text = assistantMsg.Content.OfString.Value + "\n" + text
+							}
+							// this reasoning did not come from anthropic just add a text content
+							assistantMsg.Content = openaisdk.ChatCompletionAssistantMessageParamContentUnion{
+								OfString: param.NewOpt(text),
+							}
+							continue
+						}
+						for inx, summary := range metadata.Summary {
+							if summary == "" {
+								continue
+							}
+							reasoningDetails = append(reasoningDetails, ReasoningDetail{
+								Type:    "reasoning.summary",
+								Format:  "openai-responses-v1",
+								Summary: summary,
+								Index:   inx,
+							})
+						}
+						reasoningDetails = append(reasoningDetails, ReasoningDetail{
+							Type:   "reasoning.encrypted",
+							Format: "openai-responses-v1",
+							Data:   *metadata.EncryptedContent,
+							ID:     metadata.ItemID,
+						})
+						data, _ := json.Marshal(reasoningDetails)
+						reasoningDetailsMap := []map[string]any{}
+						_ = json.Unmarshal(data, &reasoningDetailsMap)
+						assistantMsg.SetExtraFields(map[string]any{
+							"reasoning_details": reasoningDetailsMap,
+						})
+					case strings.HasPrefix(model, "xai/"):
+						metadata := openai.GetReasoningMetadata(reasoningPart.Options())
+						if metadata == nil {
+							text := fmt.Sprintf("<thoughts>%s</thoughts>", reasoningPart.Text)
+							if assistantMsg.Content.OfString.Valid() {
+								text = assistantMsg.Content.OfString.Value + "\n" + text
+							}
+							// this reasoning did not come from anthropic just add a text content
+							assistantMsg.Content = openaisdk.ChatCompletionAssistantMessageParamContentUnion{
+								OfString: param.NewOpt(text),
+							}
+							continue
+						}
+						for inx, summary := range metadata.Summary {
+							if summary == "" {
+								continue
+							}
+							reasoningDetails = append(reasoningDetails, ReasoningDetail{
+								Type:    "reasoning.summary",
+								Format:  "xai-responses-v1",
+								Summary: summary,
+								Index:   inx,
+							})
+						}
+						reasoningDetails = append(reasoningDetails, ReasoningDetail{
+							Type:   "reasoning.encrypted",
+							Format: "xai-responses-v1",
+							Data:   *metadata.EncryptedContent,
+							ID:     metadata.ItemID,
+						})
+						data, _ := json.Marshal(reasoningDetails)
+						reasoningDetailsMap := []map[string]any{}
+						_ = json.Unmarshal(data, &reasoningDetailsMap)
+						assistantMsg.SetExtraFields(map[string]any{
+							"reasoning_details": reasoningDetailsMap,
+						})
+
+					default:
+						reasoningDetails = append(reasoningDetails, ReasoningDetail{
+							Type:   "reasoning.text",
+							Text:   reasoningPart.Text,
+							Format: "unknown",
+						})
+						data, _ := json.Marshal(reasoningDetails)
+						reasoningDetailsMap := []map[string]any{}
+						_ = json.Unmarshal(data, &reasoningDetailsMap)
+						assistantMsg.SetExtraFields(map[string]any{
+							"reasoning_details": reasoningDetailsMap,
+						})
+					}
+				case fantasy.ContentTypeToolCall:
+					toolCallPart, ok := fantasy.AsContentType[fantasy.ToolCallPart](c)
+					if !ok {
+						warnings = append(warnings, fantasy.CallWarning{
+							Type:    fantasy.CallWarningTypeOther,
+							Message: "assistant message tool part does not have the right type",
+						})
+						continue
+					}
+					tc := openaisdk.ChatCompletionMessageToolCallUnionParam{
+						OfFunction: &openaisdk.ChatCompletionMessageFunctionToolCallParam{
+							ID:   toolCallPart.ToolCallID,
+							Type: "function",
+							Function: openaisdk.ChatCompletionMessageFunctionToolCallFunctionParam{
+								Name:      toolCallPart.ToolName,
+								Arguments: toolCallPart.Input,
+							},
+						},
+					}
+					if cacheControl != nil {
+						tc.OfFunction.SetExtraFields(map[string]any{
+							"cache_control": map[string]string{
+								"type": cacheControl.Type,
+							},
+						})
+					}
+					assistantMsg.ToolCalls = append(assistantMsg.ToolCalls, tc)
+				}
+			}
+			messages = append(messages, openaisdk.ChatCompletionMessageParamUnion{
+				OfAssistant: &assistantMsg,
+			})
+		case fantasy.MessageRoleTool:
+			for i, c := range msg.Content {
+				isLastPart := i == len(msg.Content)-1
+				cacheControl := anthropic.GetCacheControl(c.Options())
+				if cacheControl == nil && isLastPart {
+					cacheControl = anthropic.GetCacheControl(msg.ProviderOptions)
+				}
+				if c.GetType() != fantasy.ContentTypeToolResult {
+					warnings = append(warnings, fantasy.CallWarning{
+						Type:    fantasy.CallWarningTypeOther,
+						Message: "tool message can only have tool result content",
+					})
+					continue
+				}
+
+				toolResultPart, ok := fantasy.AsContentType[fantasy.ToolResultPart](c)
+				if !ok {
+					warnings = append(warnings, fantasy.CallWarning{
+						Type:    fantasy.CallWarningTypeOther,
+						Message: "tool message result part does not have the right type",
+					})
+					continue
+				}
+
+				switch toolResultPart.Output.GetType() {
+				case fantasy.ToolResultContentTypeText:
+					output, ok := fantasy.AsToolResultOutputType[fantasy.ToolResultOutputContentText](toolResultPart.Output)
+					if !ok {
+						warnings = append(warnings, fantasy.CallWarning{
+							Type:    fantasy.CallWarningTypeOther,
+							Message: "tool result output does not have the right type",
+						})
+						continue
+					}
+					tr := openaisdk.ToolMessage(output.Text, toolResultPart.ToolCallID)
+					if cacheControl != nil {
+						tr.SetExtraFields(map[string]any{
+							"cache_control": map[string]string{
+								"type": cacheControl.Type,
+							},
+						})
+					}
+					messages = append(messages, tr)
+				case fantasy.ToolResultContentTypeError:
+					// TODO: check if better handling is needed
+					output, ok := fantasy.AsToolResultOutputType[fantasy.ToolResultOutputContentError](toolResultPart.Output)
+					if !ok {
+						warnings = append(warnings, fantasy.CallWarning{
+							Type:    fantasy.CallWarningTypeOther,
+							Message: "tool result output does not have the right type",
+						})
+						continue
+					}
+					tr := openaisdk.ToolMessage(output.Error.Error(), toolResultPart.ToolCallID)
+					if cacheControl != nil {
+						tr.SetExtraFields(map[string]any{
+							"cache_control": map[string]string{
+								"type": cacheControl.Type,
+							},
+						})
+					}
+					messages = append(messages, tr)
+				}
+			}
+		}
+	}
+	return messages, warnings
+}

providers/openrouter/openrouter.go 🔗

@@ -37,6 +37,7 @@ func New(opts ...Option) fantasy.Provider {
 			openai.WithLanguageModelStreamUsageFunc(languageModelStreamUsage),
 			openai.WithLanguageModelStreamExtraFunc(languageModelStreamExtra),
 			openai.WithLanguageModelExtraContentFunc(languageModelExtraContent),
+			openai.WithLanguageModelToPromptFunc(languageModelToPrompt),
 		},
 	}
 	for _, o := range opts {

providers/openrouter/provider_options.go 🔗

@@ -54,14 +54,6 @@ type ProviderMetadata struct {
 // Options implements the ProviderOptionsData interface for ProviderMetadata.
 func (*ProviderMetadata) Options() {}
 
-// ReasoningMetadata represents reasoning metadata for OpenRouter.
-type ReasoningMetadata struct {
-	Signature string `json:"signature"`
-}
-
-// Options implements the ProviderOptionsData interface for ReasoningMetadata.
-func (*ReasoningMetadata) Options() {}
-
 // ReasoningOptions represents reasoning options for OpenRouter.
 type ReasoningOptions struct {
 	// Whether reasoning is enabled
@@ -120,10 +112,14 @@ func (*ProviderOptions) Options() {}
 
 // ReasoningDetail represents a reasoning detail for OpenRouter.
 type ReasoningDetail struct {
-	Type      string `json:"type"`
-	Text      string `json:"text"`
-	Summary   string `json:"summary"`
-	Signature string `json:"signature"`
+	ID        string `json:"id,omitempty"`
+	Type      string `json:"type,omitempty"`
+	Text      string `json:"text,omitempty"`
+	Data      string `json:"data,omitempty"`
+	Format    string `json:"format,omitempty"`
+	Summary   string `json:"summary,omitempty"`
+	Signature string `json:"signature,omitempty"`
+	Index     int    `json:"index"`
 }
 
 // ReasoningData represents reasoning data for OpenRouter.

providertests/anthropic_test.go 🔗

@@ -1,6 +1,7 @@
 package providertests
 
 import (
+	"context"
 	"net/http"
 	"os"
 	"testing"
@@ -18,7 +19,46 @@ var anthropicTestModels = []testModel{
 func TestAnthropicCommon(t *testing.T) {
 	var pairs []builderPair
 	for _, m := range anthropicTestModels {
-		pairs = append(pairs, builderPair{m.name, anthropicBuilder(m.model), nil})
+		pairs = append(pairs, builderPair{m.name, anthropicBuilder(m.model), nil, nil})
+	}
+	testCommon(t, pairs)
+}
+
+func addAnthropicCaching(ctx context.Context, options fantasy.PrepareStepFunctionOptions) (context.Context, fantasy.PrepareStepResult, error) {
+	prepared := fantasy.PrepareStepResult{}
+	prepared.Messages = options.Messages
+
+	for i := range prepared.Messages {
+		prepared.Messages[i].ProviderOptions = nil
+	}
+	providerOption := fantasy.ProviderOptions{
+		anthropic.Name: &anthropic.ProviderCacheControlOptions{
+			CacheControl: anthropic.CacheControl{Type: "ephemeral"},
+		},
+	}
+
+	lastSystemRoleInx := 0
+	systemMessageUpdated := false
+	for i, msg := range prepared.Messages {
+		// only add cache control to the last message
+		if msg.Role == fantasy.MessageRoleSystem {
+			lastSystemRoleInx = i
+		} else if !systemMessageUpdated {
+			prepared.Messages[lastSystemRoleInx].ProviderOptions = providerOption
+			systemMessageUpdated = true
+		}
+		// than add cache control to the last 2 messages
+		if i > len(prepared.Messages)-3 {
+			prepared.Messages[i].ProviderOptions = providerOption
+		}
+	}
+	return ctx, prepared, nil
+}
+
+func TestAnthropicCommonWithCacheControl(t *testing.T) {
+	var pairs []builderPair
+	for _, m := range anthropicTestModels {
+		pairs = append(pairs, builderPair{m.name, anthropicBuilder(m.model), nil, addAnthropicCaching})
 	}
 	testCommon(t, pairs)
 }
@@ -36,7 +76,25 @@ func TestAnthropicThinking(t *testing.T) {
 		if !m.reasoning {
 			continue
 		}
-		pairs = append(pairs, builderPair{m.name, anthropicBuilder(m.model), opts})
+		pairs = append(pairs, builderPair{m.name, anthropicBuilder(m.model), opts, nil})
+	}
+	testThinking(t, pairs, testAnthropicThinking)
+}
+
+func TestAnthropicThinkingWithCacheControl(t *testing.T) {
+	opts := fantasy.ProviderOptions{
+		anthropic.Name: &anthropic.ProviderOptions{
+			Thinking: &anthropic.ThinkingProviderOption{
+				BudgetTokens: 4000,
+			},
+		},
+	}
+	var pairs []builderPair
+	for _, m := range anthropicTestModels {
+		if !m.reasoning {
+			continue
+		}
+		pairs = append(pairs, builderPair{m.name, anthropicBuilder(m.model), opts, addAnthropicCaching})
 	}
 	testThinking(t, pairs, testAnthropicThinking)
 }

providertests/azure_test.go 🔗

@@ -17,9 +17,9 @@ const defaultBaseURL = "https://fantasy-playground-resource.services.ai.azure.co
 
 func TestAzureCommon(t *testing.T) {
 	testCommon(t, []builderPair{
-		{"azure-o4-mini", builderAzureO4Mini, nil},
-		{"azure-gpt-5-mini", builderAzureGpt5Mini, nil},
-		{"azure-grok-3-mini", builderAzureGrok3Mini, nil},
+		{"azure-o4-mini", builderAzureO4Mini, nil, nil},
+		{"azure-gpt-5-mini", builderAzureGpt5Mini, nil, nil},
+		{"azure-grok-3-mini", builderAzureGrok3Mini, nil, nil},
 	})
 }
 
@@ -30,8 +30,8 @@ func TestAzureThinking(t *testing.T) {
 		},
 	}
 	testThinking(t, []builderPair{
-		{"azure-gpt-5-mini", builderAzureGpt5Mini, opts},
-		{"azure-grok-3-mini", builderAzureGrok3Mini, opts},
+		{"azure-gpt-5-mini", builderAzureGpt5Mini, opts, nil},
+		{"azure-grok-3-mini", builderAzureGrok3Mini, opts, nil},
 	}, testAzureThinking)
 }
 

providertests/bedrock_test.go 🔗

@@ -12,14 +12,14 @@ import (
 
 func TestBedrockCommon(t *testing.T) {
 	testCommon(t, []builderPair{
-		{"bedrock-anthropic-claude-3-sonnet", builderBedrockClaude3Sonnet, nil},
-		{"bedrock-anthropic-claude-3-opus", builderBedrockClaude3Opus, nil},
-		{"bedrock-anthropic-claude-3-haiku", builderBedrockClaude3Haiku, nil},
+		{"bedrock-anthropic-claude-3-sonnet", builderBedrockClaude3Sonnet, nil, nil},
+		{"bedrock-anthropic-claude-3-opus", builderBedrockClaude3Opus, nil, nil},
+		{"bedrock-anthropic-claude-3-haiku", builderBedrockClaude3Haiku, nil, nil},
 	})
 }
 
 func TestBedrockBasicAuth(t *testing.T) {
-	testSimple(t, builderPair{"bedrock-anthropic-claude-3-sonnet", buildersBedrockBasicAuth, nil})
+	testSimple(t, builderPair{"bedrock-anthropic-claude-3-sonnet", buildersBedrockBasicAuth, nil, nil})
 }
 
 func builderBedrockClaude3Sonnet(r *recorder.Recorder) (fantasy.LanguageModel, error) {

providertests/common_test.go 🔗

@@ -33,6 +33,7 @@ type builderPair struct {
 	name            string
 	builder         builderFunc
 	providerOptions fantasy.ProviderOptions
+	prepareStep     fantasy.PrepareStepFunction
 }
 
 func testCommon(t *testing.T, pairs []builderPair) {
@@ -66,6 +67,7 @@ func testSimple(t *testing.T, pair builderPair) {
 			Prompt:          "Say hi in Portuguese",
 			ProviderOptions: pair.providerOptions,
 			MaxOutputTokens: fantasy.Opt(int64(4000)),
+			PrepareStep:     pair.prepareStep,
 		})
 		require.NoError(t, err, "failed to generate")
 		checkResult(t, result)
@@ -84,6 +86,7 @@ func testSimple(t *testing.T, pair builderPair) {
 			Prompt:          "Say hi in Portuguese",
 			ProviderOptions: pair.providerOptions,
 			MaxOutputTokens: fantasy.Opt(int64(4000)),
+			PrepareStep:     pair.prepareStep,
 		})
 		require.NoError(t, err, "failed to generate")
 		checkResult(t, result)
@@ -138,6 +141,7 @@ func testTool(t *testing.T, pair builderPair) {
 			Prompt:          "What's the weather in Florence,Italy?",
 			ProviderOptions: pair.providerOptions,
 			MaxOutputTokens: fantasy.Opt(int64(4000)),
+			PrepareStep:     pair.prepareStep,
 		})
 		require.NoError(t, err, "failed to generate")
 		checkResult(t, result)
@@ -157,6 +161,7 @@ func testTool(t *testing.T, pair builderPair) {
 			Prompt:          "What's the weather in Florence,Italy?",
 			ProviderOptions: pair.providerOptions,
 			MaxOutputTokens: fantasy.Opt(int64(4000)),
+			PrepareStep:     pair.prepareStep,
 		})
 		require.NoError(t, err, "failed to generate")
 		checkResult(t, result)
@@ -234,6 +239,7 @@ func testMultiTool(t *testing.T, pair builderPair) {
 			Prompt:          "Add and multiply the number 2 and 3",
 			ProviderOptions: pair.providerOptions,
 			MaxOutputTokens: fantasy.Opt(int64(4000)),
+			PrepareStep:     pair.prepareStep,
 		})
 		require.NoError(t, err, "failed to generate")
 		checkResult(t, result)
@@ -254,6 +260,7 @@ func testMultiTool(t *testing.T, pair builderPair) {
 			Prompt:          "Add and multiply the number 2 and 3",
 			ProviderOptions: pair.providerOptions,
 			MaxOutputTokens: fantasy.Opt(int64(4000)),
+			PrepareStep:     pair.prepareStep,
 		})
 		require.NoError(t, err, "failed to generate")
 		checkResult(t, result)
@@ -289,6 +296,7 @@ func testThinking(t *testing.T, pairs []builderPair, thinkChecks func(*testing.T
 				result, err := agent.Generate(t.Context(), fantasy.AgentCall{
 					Prompt:          "What's the weather in Florence, Italy?",
 					ProviderOptions: pair.providerOptions,
+					PrepareStep:     pair.prepareStep,
 				})
 				require.NoError(t, err, "failed to generate")
 
@@ -325,6 +333,7 @@ func testThinking(t *testing.T, pairs []builderPair, thinkChecks func(*testing.T
 				result, err := agent.Stream(t.Context(), fantasy.AgentStreamCall{
 					Prompt:          "What's the weather in Florence, Italy?",
 					ProviderOptions: pair.providerOptions,
+					PrepareStep:     pair.prepareStep,
 				})
 				require.NoError(t, err, "failed to generate")
 

providertests/google_test.go 🔗

@@ -26,10 +26,10 @@ var vertexTestModels = []testModel{
 func TestGoogleCommon(t *testing.T) {
 	var pairs []builderPair
 	for _, m := range geminiTestModels {
-		pairs = append(pairs, builderPair{m.name, geminiBuilder(m.model), nil})
+		pairs = append(pairs, builderPair{m.name, geminiBuilder(m.model), nil, nil})
 	}
 	for _, m := range vertexTestModels {
-		pairs = append(pairs, builderPair{m.name, vertexBuilder(m.model), nil})
+		pairs = append(pairs, builderPair{m.name, vertexBuilder(m.model), nil, nil})
 	}
 	testCommon(t, pairs)
 }
@@ -49,7 +49,7 @@ func TestGoogleThinking(t *testing.T) {
 		if !m.reasoning {
 			continue
 		}
-		pairs = append(pairs, builderPair{m.name, geminiBuilder(m.model), opts})
+		pairs = append(pairs, builderPair{m.name, geminiBuilder(m.model), opts, nil})
 	}
 	testThinking(t, pairs, testGoogleThinking)
 }

providertests/openai_responses_test.go 🔗

@@ -14,7 +14,7 @@ import (
 func TestOpenAIResponsesCommon(t *testing.T) {
 	var pairs []builderPair
 	for _, m := range openaiTestModels {
-		pairs = append(pairs, builderPair{m.name, openAIReasoningBuilder(m.model), nil})
+		pairs = append(pairs, builderPair{m.name, openAIReasoningBuilder(m.model), nil, nil})
 	}
 	testCommon(t, pairs)
 }
@@ -45,7 +45,7 @@ func TestOpenAIResponsesWithSummaryThinking(t *testing.T) {
 		if !m.reasoning {
 			continue
 		}
-		pairs = append(pairs, builderPair{m.name, openAIReasoningBuilder(m.model), opts})
+		pairs = append(pairs, builderPair{m.name, openAIReasoningBuilder(m.model), opts, nil})
 	}
 	testThinking(t, pairs, testOpenAIResponsesThinkingWithSummaryThinking)
 }

providertests/openai_test.go 🔗

@@ -20,7 +20,7 @@ var openaiTestModels = []testModel{
 func TestOpenAICommon(t *testing.T) {
 	var pairs []builderPair
 	for _, m := range openaiTestModels {
-		pairs = append(pairs, builderPair{m.name, openAIBuilder(m.model), nil})
+		pairs = append(pairs, builderPair{m.name, openAIBuilder(m.model), nil, nil})
 	}
 	testCommon(t, pairs)
 }

providertests/openaicompat_test.go 🔗

@@ -14,11 +14,11 @@ import (
 
 func TestOpenAICompatibleCommon(t *testing.T) {
 	testCommon(t, []builderPair{
-		{"xai-grok-4-fast", builderXAIGrok4Fast, nil},
-		{"xai-grok-code-fast", builderXAIGrokCodeFast, nil},
-		{"groq-kimi-k2", builderGroq, nil},
-		{"zai-glm-4.5", builderZAIGLM45, nil},
-		{"huggingface-qwen3-coder", builderHuggingFace, nil},
+		{"xai-grok-4-fast", builderXAIGrok4Fast, nil, nil},
+		{"xai-grok-code-fast", builderXAIGrokCodeFast, nil, nil},
+		{"groq-kimi-k2", builderGroq, nil, nil},
+		{"zai-glm-4.5", builderZAIGLM45, nil, nil},
+		{"huggingface-qwen3-coder", builderHuggingFace, nil, nil},
 	})
 }
 
@@ -29,8 +29,8 @@ func TestOpenAICompatibleThinking(t *testing.T) {
 		},
 	}
 	testThinking(t, []builderPair{
-		{"xai-grok-3-mini", builderXAIGrok3Mini, opts},
-		{"zai-glm-4.5", builderZAIGLM45, opts},
+		{"xai-grok-3-mini", builderXAIGrok3Mini, opts, nil},
+		{"zai-glm-4.5", builderZAIGLM45, opts, nil},
 	}, testOpenAICompatThinking)
 }
 

providertests/openrouter_test.go 🔗

@@ -6,6 +6,7 @@ import (
 	"testing"
 
 	"charm.land/fantasy"
+	"charm.land/fantasy/providers/anthropic"
 	"charm.land/fantasy/providers/openrouter"
 	"github.com/stretchr/testify/require"
 	"gopkg.in/dnaeon/go-vcr.v4/pkg/recorder"
@@ -13,7 +14,7 @@ import (
 
 var openrouterTestModels = []testModel{
 	{"kimi-k2", "moonshotai/kimi-k2-0905", false},
-	{"grok-code-fast-1", "x-ai/grok-code-fast-1", false},
+	{"grok-code-fast-1", "x-ai/grok-code-fast-1", true},
 	{"claude-sonnet-4", "anthropic/claude-sonnet-4", true},
 	{"gemini-2.5-flash", "google/gemini-2.5-flash", false},
 	{"deepseek-chat-v3.1-free", "deepseek/deepseek-chat-v3.1:free", false},
@@ -26,11 +27,17 @@ var openrouterTestModels = []testModel{
 func TestOpenRouterCommon(t *testing.T) {
 	var pairs []builderPair
 	for _, m := range openrouterTestModels {
-		pairs = append(pairs, builderPair{m.name, openrouterBuilder(m.model), nil})
+		pairs = append(pairs, builderPair{m.name, openrouterBuilder(m.model), nil, nil})
 	}
 	testCommon(t, pairs)
 }
 
+func TestOpenRouterCommonWithAnthropicCache(t *testing.T) {
+	testCommon(t, []builderPair{
+		{"claude-sonnet-4", openrouterBuilder("anthropic/claude-sonnet-4"), nil, addAnthropicCaching},
+	})
+}
+
 func TestOpenRouterThinking(t *testing.T) {
 	opts := fantasy.ProviderOptions{
 		openrouter.Name: &openrouter.ProviderOptions{
@@ -45,13 +52,13 @@ func TestOpenRouterThinking(t *testing.T) {
 		if !m.reasoning {
 			continue
 		}
-		pairs = append(pairs, builderPair{m.name, openrouterBuilder(m.model), opts})
+		pairs = append(pairs, builderPair{m.name, openrouterBuilder(m.model), opts, nil})
 	}
 	testThinking(t, pairs, testOpenrouterThinking)
 
 	// test anthropic signature
 	testThinking(t, []builderPair{
-		{"claude-sonnet-4-sig", openrouterBuilder("anthropic/claude-sonnet-4"), opts},
+		{"claude-sonnet-4-sig", openrouterBuilder("anthropic/claude-sonnet-4"), opts, nil},
 	}, testOpenrouterThinkingWithSignature)
 }
 
@@ -72,12 +79,12 @@ func testOpenrouterThinkingWithSignature(t *testing.T, result *fantasy.AgentResu
 						continue
 					}
 
-					anthropicReasoningMetadata, ok := reasoningContent.ProviderOptions[openrouter.Name]
+					anthropicReasoningMetadata, ok := reasoningContent.ProviderOptions[anthropic.Name]
 					if !ok {
 						continue
 					}
 					if reasoningContent.Text != "" {
-						if typed, ok := anthropicReasoningMetadata.(*openrouter.ReasoningMetadata); ok {
+						if typed, ok := anthropicReasoningMetadata.(*anthropic.ReasoningOptionMetadata); ok {
 							require.NotEmpty(t, typed.Signature)
 							signaturesCount += 1
 						}

providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/multi_tool.yaml 🔗

@@ -0,0 +1,63 @@
+---
+version: 2
+interactions:
+- id: 0
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 889
+    host: ""
+    body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Add and multiply the number 2 and 3","cache_control":{"type":"ephemeral"},"type":"text"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS.","cache_control":{"type":"ephemeral"},"type":"text"}],"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers"},{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers"}]}'
+    headers:
+      Accept:
+      - application/json
+      Content-Type:
+      - application/json
+      User-Agent:
+      - Anthropic/Go 1.14.0
+    url: https://api.anthropic.com/v1/messages
+    method: POST
+  response:
+    proto: HTTP/2.0
+    proto_major: 2
+    proto_minor: 0
+    content_length: -1
+    uncompressed: true
+    body: '{"model":"claude-sonnet-4-20250514","id":"msg_01SznaDwXbs3XRxBLMr2X7T3","type":"message","role":"assistant","content":[{"type":"text","text":"I''ll add and multiply the numbers 2 and 3 for you."},{"type":"tool_use","id":"toolu_01R4MgGUzmDFt4FVjLhPom7k","name":"add","input":{"a":2,"b":3}},{"type":"tool_use","id":"toolu_011jyywbY4Fv6JjWSS6cpVYp","name":"multiply","input":{"a":2,"b":3}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":507,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":137,"service_tier":"standard"}}'
+    headers:
+      Content-Type:
+      - application/json
+    status: 200 OK
+    code: 200
+    duration: 2.974480333s
+- id: 1
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 1472
+    host: ""

providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/multi_tool_streaming.yaml 🔗

@@ -0,0 +1,163 @@
+---
+version: 2
+interactions:
+- id: 0
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 886
+    host: ""
+    body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Add and multiply the number 2 and 3","cache_control":{"type":"ephemeral"},"type":"text"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant. Always use both add and multiply at the same time.","cache_control":{"type":"ephemeral"},"type":"text"}],"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers"},{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers"}],"stream":true}'
+    headers:
+      Accept:
+      - application/json
+      Content-Type:
+      - application/json
+      User-Agent:
+      - Anthropic/Go 1.14.0
+    url: https://api.anthropic.com/v1/messages
+    method: POST
+  response:
+    proto: HTTP/2.0
+    proto_major: 2
+    proto_minor: 0
+    content_length: -1
+    body: |+
+      event: message_start
+      data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01Ps4SquTmAkLoZixSEW4SrN","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":502,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":4,"service_tier":"standard"}}              }
+
+      event: content_block_start
+      data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""}       }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"I'll add an"}       }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"d multiply the numbers 2 and 3 for"}           }
+
+      event: ping
+      data: {"type": "ping"}
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" you."}           }
+
+      event: content_block_stop
+      data: {"type":"content_block_stop","index":0}
+
+      event: content_block_start
+      data: {"type":"content_block_start","index":1,"content_block":{"type":"tool_use","id":"toolu_014EzUJ1TCJvs3dR7mZZgoyd","name":"add","input":{}}   }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":""}               }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"{\"a\":"}          }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":" 2"}        }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":", "}         }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"\"b\": 3}"}        }
+
+      event: content_block_stop
+      data: {"type":"content_block_stop","index":1              }
+
+      event: content_block_start
+      data: {"type":"content_block_start","index":2,"content_block":{"type":"tool_use","id":"toolu_01GYivdvVTotPKuatZiCkQvv","name":"multiply","input":{}}       }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":""}           }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":"{\"a\": "}      }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":"2"}               }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":", \"b\": "}              }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":"3}"} }
+
+      event: content_block_stop
+      data: {"type":"content_block_stop","index":2         }
+
+      event: message_delta
+      data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"input_tokens":502,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":137}   }
+
+      event: message_stop
+      data: {"type":"message_stop"              }
+
+    headers:
+      Content-Type:
+      - text/event-stream; charset=utf-8
+    status: 200 OK
+    code: 200
+    duration: 1.806945584s
+- id: 1
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 1469
+    host: ""

providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/simple.yaml 🔗

@@ -0,0 +1,33 @@
+---
+version: 2
+interactions:
+- id: 0
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 279
+    host: ""
+    body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Say hi in Portuguese","cache_control":{"type":"ephemeral"},"type":"text"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","cache_control":{"type":"ephemeral"},"type":"text"}]}'
+    headers:
+      Accept:
+      - application/json
+      Content-Type:
+      - application/json
+      User-Agent:
+      - Anthropic/Go 1.14.0
+    url: https://api.anthropic.com/v1/messages
+    method: POST
+  response:
+    proto: HTTP/2.0
+    proto_major: 2
+    proto_minor: 0
+    content_length: -1
+    uncompressed: true
+    body: '{"model":"claude-sonnet-4-20250514","id":"msg_01SM76nbs7k7qZjGy2hihYc6","type":"message","role":"assistant","content":[{"type":"text","text":"Olá! (Oh-LAH)\n\nThis is the most common way to say \"hi\" in Portuguese. You could also say \"Oi!\" (OH-ee) which is more casual and friendly."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":49,"service_tier":"standard"}}'
+    headers:
+      Content-Type:
+      - application/json
+    status: 200 OK
+    code: 200
+    duration: 2.99537125s

providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/simple_streaming.yaml 🔗

@@ -0,0 +1,77 @@
+---
+version: 2
+interactions:
+- id: 0
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 293
+    host: ""
+    body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Say hi in Portuguese","cache_control":{"type":"ephemeral"},"type":"text"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","cache_control":{"type":"ephemeral"},"type":"text"}],"stream":true}'
+    headers:
+      Accept:
+      - application/json
+      Content-Type:
+      - application/json
+      User-Agent:
+      - Anthropic/Go 1.14.0
+    url: https://api.anthropic.com/v1/messages
+    method: POST
+  response:
+    proto: HTTP/2.0
+    proto_major: 2
+    proto_minor: 0
+    content_length: -1
+    body: |+
+      event: message_start
+      data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01QBAGSzfj2ZoqStejnhgqXh","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":4,"service_tier":"standard"}}         }
+
+      event: content_block_start
+      data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""}}
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"Olá!"}}
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"\n\n("}      }
+
+      event: ping
+      data: {"type": "ping"}
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"That's \"hello"} }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"\" in Portuguese."}     }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" Other common"}           }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" greetings include \""}          }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"Oi!\""}      }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" for a more casual \""}            }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"hi!\")"}         }
+
+      event: content_block_stop
+      data: {"type":"content_block_stop","index":0               }
+
+      event: message_delta
+      data: {"type":"message_delta","delta":{"stop_reason":"end_turn","stop_sequence":null},"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":35}   }
+
+      event: message_stop
+      data: {"type":"message_stop"            }
+
+    headers:
+      Content-Type:
+      - text/event-stream; charset=utf-8
+    status: 200 OK
+    code: 200
+    duration: 2.247809834s

providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/tool.yaml 🔗

@@ -0,0 +1,63 @@
+---
+version: 2
+interactions:
+- id: 0
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 570
+    host: ""
+    body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","cache_control":{"type":"ephemeral"},"type":"text"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","cache_control":{"type":"ephemeral"},"type":"text"}],"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location"}]}'
+    headers:
+      Accept:
+      - application/json
+      Content-Type:
+      - application/json
+      User-Agent:
+      - Anthropic/Go 1.14.0
+    url: https://api.anthropic.com/v1/messages
+    method: POST
+  response:
+    proto: HTTP/2.0
+    proto_major: 2
+    proto_minor: 0
+    content_length: -1
+    uncompressed: true
+    body: '{"model":"claude-sonnet-4-20250514","id":"msg_01Royrn78rAtSCcgQCG9QqoG","type":"message","role":"assistant","content":[{"type":"text","text":"I''ll get the weather information for Florence, Italy for you."},{"type":"tool_use","id":"toolu_01TdBhfkiVbuyrCtsoQ2P4v8","name":"weather","input":{"location":"Florence, Italy"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":67,"service_tier":"standard"}}'
+    headers:
+      Content-Type:
+      - application/json
+    status: 200 OK
+    code: 200
+    duration: 2.230270958s
+- id: 1
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 981
+    host: ""
+    body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"text":"I''ll get the weather information for Florence, Italy for you.","type":"text"},{"id":"toolu_01TdBhfkiVbuyrCtsoQ2P4v8","input":{"location":"Florence, Italy"},"name":"weather","cache_control":{"type":"ephemeral"},"type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01TdBhfkiVbuyrCtsoQ2P4v8","cache_control":{"type":"ephemeral"},"content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","cache_control":{"type":"ephemeral"},"type":"text"}],"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location"}]}'
+    headers:
+      Accept:
+      - application/json
+      Content-Type:
+      - application/json
+      User-Agent:
+      - Anthropic/Go 1.14.0
+    url: https://api.anthropic.com/v1/messages
+    method: POST
+  response:
+    proto: HTTP/2.0
+    proto_major: 2
+    proto_minor: 0
+    content_length: -1
+    uncompressed: true
+    body: '{"model":"claude-sonnet-4-20250514","id":"msg_01EiThKJDKp98nTMtjAWoXG6","type":"message","role":"assistant","content":[{"type":"text","text":"The current temperature in Florence, Italy is 40°C (104°F). That''s quite hot! Make sure to stay hydrated and seek shade or air conditioning if you''re planning to be outdoors."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":476,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":46,"service_tier":"standard"}}'
+    headers:
+      Content-Type:
+      - application/json
+    status: 200 OK
+    code: 200
+    duration: 2.465001083s

providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/tool_streaming.yaml 🔗

@@ -0,0 +1,151 @@
+---
+version: 2
+interactions:
+- id: 0
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 584
+    host: ""
+    body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","cache_control":{"type":"ephemeral"},"type":"text"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","cache_control":{"type":"ephemeral"},"type":"text"}],"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location"}],"stream":true}'
+    headers:
+      Accept:
+      - application/json
+      Content-Type:
+      - application/json
+      User-Agent:
+      - Anthropic/Go 1.14.0
+    url: https://api.anthropic.com/v1/messages
+    method: POST
+  response:
+    proto: HTTP/2.0
+    proto_major: 2
+    proto_minor: 0
+    content_length: -1
+    body: |+
+      event: message_start
+      data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01HzMwmi82NUByB1sP1H4Rtw","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":8,"service_tier":"standard"}}          }
+
+      event: content_block_start
+      data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""}               }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"I'll check the weather in Florence,"}    }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" Italy for you."}         }
+
+      event: ping
+      data: {"type": "ping"}
+
+      event: content_block_stop
+      data: {"type":"content_block_stop","index":0      }
+
+      event: ping
+      data: {"type": "ping"}
+
+      event: content_block_start
+      data: {"type":"content_block_start","index":1,"content_block":{"type":"tool_use","id":"toolu_01TTGTdVydBd7icXtF1o89n7","name":"weather","input":{}}        }
+
+      event: ping
+      data: {"type": "ping"}
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":""}   }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"{\"locati"}    }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"on"}             }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"\": \"Floren"}}
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"ce, "}    }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"Italy\"}"}       }
+
+      event: content_block_stop
+      data: {"type":"content_block_stop","index":1               }
+
+      event: message_delta
+      data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":66}        }
+
+      event: message_stop
+      data: {"type":"message_stop"               }
+
+    headers:
+      Content-Type:
+      - text/event-stream; charset=utf-8
+    status: 200 OK
+    code: 200
+    duration: 1.726456542s
+- id: 1
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 984
+    host: ""
+    body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"text":"I''ll check the weather in Florence, Italy for you.","type":"text"},{"id":"toolu_01TTGTdVydBd7icXtF1o89n7","input":{"location":"Florence, Italy"},"name":"weather","cache_control":{"type":"ephemeral"},"type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01TTGTdVydBd7icXtF1o89n7","cache_control":{"type":"ephemeral"},"content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","cache_control":{"type":"ephemeral"},"type":"text"}],"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location"}],"stream":true}'
+    headers:
+      Accept:
+      - application/json
+      Content-Type:
+      - application/json
+      User-Agent:
+      - Anthropic/Go 1.14.0
+    url: https://api.anthropic.com/v1/messages
+    method: POST
+  response:
+    proto: HTTP/2.0
+    proto_major: 2
+    proto_minor: 0
+    content_length: -1
+    body: |+
+      event: message_start
+      data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01UX1WnAwYyv4VsX8Cpuzxcv","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":475,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":2,"service_tier":"standard"}}            }
+
+      event: content_block_start
+      data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""}  }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"The current"}      }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" weather in Florence, Italy is 40"}         }
+
+      event: ping
+      data: {"type": "ping"}
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"°C (104°F)."}          }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" That's quite hot! It's a very"}           }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" warm day in Florence"}  }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"."}           }
+
+      event: content_block_stop
+      data: {"type":"content_block_stop","index":0          }
+
+      event: message_delta
+      data: {"type":"message_delta","delta":{"stop_reason":"end_turn","stop_sequence":null},"usage":{"input_tokens":475,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":34}          }
+
+      event: message_stop
+      data: {"type":"message_stop"}
+
+    headers:
+      Content-Type:
+      - text/event-stream; charset=utf-8
+    status: 200 OK
+    code: 200
+    duration: 2.045913625s

providertests/testdata/TestAnthropicThinkingWithCacheControl/claude-sonnet-4/thinking-streaming.yaml 🔗

@@ -0,0 +1,166 @@
+---
+version: 2
+interactions:
+- id: 0
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 636
+    host: ""
+    body: '{"max_tokens":8096,"messages":[{"content":[{"text":"What''s the weather in Florence, Italy?","cache_control":{"type":"ephemeral"},"type":"text"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","cache_control":{"type":"ephemeral"},"type":"text"}],"thinking":{"budget_tokens":4000,"type":"enabled"},"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location"}],"stream":true}'
+    headers:
+      Accept:
+      - application/json
+      Content-Type:
+      - application/json
+      User-Agent:
+      - Anthropic/Go 1.14.0
+    url: https://api.anthropic.com/v1/messages
+    method: POST
+  response:
+    proto: HTTP/2.0
+    proto_major: 2
+    proto_minor: 0
+    content_length: -1
+    body: |+
+      event: message_start
+      data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_018QLVWxHwCDcmbxmut1XibB","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":423,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":6,"service_tier":"standard"}}              }
+
+      event: content_block_start
+      data: {"type":"content_block_start","index":0,"content_block":{"type":"thinking","thinking":"","signature":""}          }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":"The user is asking for"}    }
+
+      event: ping
+      data: {"type": "ping"}
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" weather information for Florence, Italy. I have"}    }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" access to a weather"}       }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" function that requires"}}
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" a location parameter. The"}   }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" user has provided the location as \"Florence,"}       }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" Italy\". I have"}              }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" all the required parameters to make this function call"} }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":"."}   }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":0,"delta":{"type":"signature_delta","signature":"EqkDCkYICBgCKkDMkVtuKFhL43wYuAZr0LxTAfH7CxEgsPiJdcz/3isjhK8aSzupMCdAAzBvP0wbo0CoAK+d6U8my50fwC6qbKjQEgzeVwbRwVSpMC7a7eIaDDGi/DIlGKGpdo1yXSIwn6eQw8pvNZH3N0x+TKc6d8UWJ85+y+le/fWhIIv/Q/2FnNSZDEbSvLQI6thi94QwKpACRTY5D6hm8bVJ5BIHMyYBLEaxYPjsNyQ9Idf+pkFHY2TKEEvFoqo9liA9RGrb4KOaaJ3n0D6Bqclr69UzTmGs1vvrrKApGO7SleM3V13PG78eKt3QbFu7VjndhYALY2Cf4jDoW6yEHZ8fVvp61kGhyiuxQH8pPqCR8GdkSLOI8O76NHWRt4Zj1MO7LCTaqJNKJdvOc7xKSnQGNjB1Jz3OS+cclNqAhJgJn278Vc0HzIkcX6NdxSM3XjEXMRo7l1oBV04UCtWZD+REpPAt3G1Wz8MJ7mco3F+0tpGnv5nlN5J0+boOZ2o16NASQ7MBPa3a1+F4zgqiVO2TnyxLhy38zn4dfAzoJ1GKedr3UDXBMeMYAQ=="}   }
+
+      event: content_block_stop
+      data: {"type":"content_block_stop","index":0}
+
+      event: content_block_start
+      data: {"type":"content_block_start","index":1,"content_block":{"type":"tool_use","id":"toolu_012Y7zdiwQJuNXf7QjpkJtC6","name":"weather","input":{}}         }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":""}       }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"{\"location"} }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"\": "}             }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"\"Florence,"}              }
+
+      event: content_block_delta
+      data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":" Italy\"}"}               }
+
+      event: content_block_stop
+      data: {"type":"content_block_stop","index":1            }
+
+      event: message_delta
+      data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"input_tokens":423,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":111}         }
+
+      event: message_stop
+      data: {"type":"message_stop"              }
+
+    headers:
+      Content-Type:
+      - text/event-stream; charset=utf-8
+    status: 200 OK
+    code: 200
+    duration: 1.784653959s
+- id: 1
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 1842
+    host: ""

providertests/testdata/TestAnthropicThinkingWithCacheControl/claude-sonnet-4/thinking.yaml 🔗

@@ -0,0 +1,63 @@
+---
+version: 2
+interactions:
+- id: 0
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 622
+    host: ""
+    body: '{"max_tokens":8096,"messages":[{"content":[{"text":"What''s the weather in Florence, Italy?","cache_control":{"type":"ephemeral"},"type":"text"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","cache_control":{"type":"ephemeral"},"type":"text"}],"thinking":{"budget_tokens":4000,"type":"enabled"},"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location"}]}'
+    headers:
+      Accept:
+      - application/json
+      Content-Type:
+      - application/json
+      User-Agent:
+      - Anthropic/Go 1.14.0
+    url: https://api.anthropic.com/v1/messages
+    method: POST
+  response:
+    proto: HTTP/2.0
+    proto_major: 2
+    proto_minor: 0
+    content_length: -1
+    uncompressed: true

providertests/testdata/TestOpenRouterCommon/glm-4.5/multi_tool_streaming.yaml 🔗

@@ -15,7 +15,7 @@ interactions:
       Content-Type:
       - application/json
       User-Agent:
-      - OpenAI/Go 2.3.0
+      - OpenAI/Go 2.7.1
     url: https://openrouter.ai/api/v1/chat/completions
     method: POST
   response:
@@ -24,233 +24,167 @@ interactions:
     proto_minor: 0
     content_length: -1
     body: |+
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n","reasoning_details":[{"type":"reasoning.text","text":"\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.text","text":"The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.text","text":"The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" wants","reasoning_details":[{"type":"reasoning.text","text":" wants","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asking","reasoning_details":[{"type":"reasoning.text","text":" asking","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" me","reasoning_details":[{"type":"reasoning.text","text":" me","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" me","reasoning_details":[{"type":"reasoning.text","text":" me","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.text","text":" both","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.text","text":" both","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" add","reasoning_details":[{"type":"reasoning.text","text":" add","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" add","reasoning_details":[{"type":"reasoning.text","text":" add","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiply","reasoning_details":[{"type":"reasoning.text","text":" multiply","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiply","reasoning_details":[{"type":"reasoning.text","text":" multiply","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" numbers","reasoning_details":[{"type":"reasoning.text","text":" numbers","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" numbers","reasoning_details":[{"type":"reasoning.text","text":" numbers","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"2","reasoning_details":[{"type":"reasoning.text","text":"2","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"2","reasoning_details":[{"type":"reasoning.text","text":"2","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"3","reasoning_details":[{"type":"reasoning.text","text":"3","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"3","reasoning_details":[{"type":"reasoning.text","text":"3","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.text","text":" need","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" have","reasoning_details":[{"type":"reasoning.text","text":" have","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" two","reasoning_details":[{"type":"reasoning.text","text":" two","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.text","text":" use","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.text","text":" functions","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.text","text":" both","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" available","reasoning_details":[{"type":"reasoning.text","text":" available","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.text","text":":","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" add","reasoning_details":[{"type":"reasoning.text","text":" add","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" add","reasoning_details":[{"type":"reasoning.text","text":" add","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiply","reasoning_details":[{"type":"reasoning.text","text":" multiply","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiply","reasoning_details":[{"type":"reasoning.text","text":" multiply","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.text","text":" functions","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.text","text":" with","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" The","reasoning_details":[{"type":"reasoning.text","text":" The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" same","reasoning_details":[{"type":"reasoning.text","text":" same","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" specifically","reasoning_details":[{"type":"reasoning.text","text":" specifically","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parameters","reasoning_details":[{"type":"reasoning.text","text":" parameters","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" wants","reasoning_details":[{"type":"reasoning.text","text":" wants","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n\n","reasoning_details":[{"type":"reasoning.text","text":".\n\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" me","reasoning_details":[{"type":"reasoning.text","text":" me","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"For","reasoning_details":[{"type":"reasoning.text","text":"For","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" add","reasoning_details":[{"type":"reasoning.text","text":" add","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.text","text":" use","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.text","text":":","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.text","text":" both","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.text","text":" functions","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"=","reasoning_details":[{"type":"reasoning.text","text":"=","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"2","reasoning_details":[{"type":"reasoning.text","text":"2","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" so","reasoning_details":[{"type":"reasoning.text","text":" so","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" b","reasoning_details":[{"type":"reasoning.text","text":" b","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.text","text":" should","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"=","reasoning_details":[{"type":"reasoning.text","text":"=","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.text","text":" call","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"3","reasoning_details":[{"type":"reasoning.text","text":"3","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.text","text":" both","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n","reasoning_details":[{"type":"reasoning.text","text":"\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.text","text":" functions","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"For","reasoning_details":[{"type":"reasoning.text","text":"For","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.text","text":" with","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiply","reasoning_details":[{"type":"reasoning.text","text":" multiply","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.text","text":":","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parameters","reasoning_details":[{"type":"reasoning.text","text":" parameters","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"=","reasoning_details":[{"type":"reasoning.text","text":"=","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"2","reasoning_details":[{"type":"reasoning.text","text":"2","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"2","reasoning_details":[{"type":"reasoning.text","text":"2","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" b","reasoning_details":[{"type":"reasoning.text","text":" b","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"3","reasoning_details":[{"type":"reasoning.text","text":"3","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"=","reasoning_details":[{"type":"reasoning.text","text":"=","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n\n","reasoning_details":[{"type":"reasoning.text","text":".\n\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"3","reasoning_details":[{"type":"reasoning.text","text":"3","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"For","reasoning_details":[{"type":"reasoning.text","text":"For","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n\n","reasoning_details":[{"type":"reasoning.text","text":"\n\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"I","reasoning_details":[{"type":"reasoning.text","text":"I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" add","reasoning_details":[{"type":"reasoning.text","text":" add","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'ll","reasoning_details":[{"type":"reasoning.text","text":"'ll","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.text","text":" function","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.text","text":" call","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":\n","reasoning_details":[{"type":"reasoning.text","text":":\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.text","text":" both","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-","reasoning_details":[{"type":"reasoning.text","text":"-","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.text","text":" functions","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.text","text":":","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"I","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"2","reasoning_details":[{"type":"reasoning.text","text":"2","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"'ll","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n","reasoning_details":[{"type":"reasoning.text","text":"\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":" add","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-","reasoning_details":[{"type":"reasoning.text","text":"-","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" b","reasoning_details":[{"type":"reasoning.text","text":" b","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiply","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.text","text":":","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":" the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":" numbers","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"3","reasoning_details":[{"type":"reasoning.text","text":"3","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n\n","reasoning_details":[{"type":"reasoning.text","text":"\n\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"2","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"For","reasoning_details":[{"type":"reasoning.text","text":"For","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiply","reasoning_details":[{"type":"reasoning.text","text":" multiply","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"3","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.text","text":" function","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":" for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":\n","reasoning_details":[{"type":"reasoning.text","text":":\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":" you","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-","reasoning_details":[{"type":"reasoning.text","text":"-","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":".\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_e4bee396c93d4f45be357034","index":0,"type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.text","text":":","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_9ece1ae129a14ac2875f398f","index":1,"type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
 
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"2","reasoning_details":[{"type":"reasoning.text","text":"2","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  \n","reasoning_details":[{"type":"reasoning.text","text":"  \n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-","reasoning_details":[{"type":"reasoning.text","text":"-","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" b","reasoning_details":[{"type":"reasoning.text","text":" b","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.text","text":":","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"3","reasoning_details":[{"type":"reasoning.text","text":"3","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n\n","reasoning_details":[{"type":"reasoning.text","text":"\n\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"I","reasoning_details":[{"type":"reasoning.text","text":"I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.text","text":" should","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.text","text":" call","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.text","text":" both","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.text","text":" functions","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"I","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"'ll","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":" add","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiply","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":" the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":" numbers","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"2","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"3","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":" for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":" you","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":".\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_8eebb8d117b94c35a6c99734","index":0,"type":"function","function":{"name":"add","arguments":"{\"a\": 2, \"b\": 3}"}}]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_ccad9698f6dc4b72a67b0cc3","index":1,"type":"function","function":{"name":"multiply","arguments":"{\"a\": 2, \"b\": 3}"}}]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
-
-      data: {"id":"gen-1758885053-zbAuZUCTy0BBdZxDyrs1","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885053,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":282,"completion_tokens":154,"total_tokens":436,"cost":0.00048644,"is_byok":false,"prompt_tokens_details":{"cached_tokens":44,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00014764,"upstream_inference_completions_cost":0.0003388},"completion_tokens_details":{"reasoning_tokens":94,"image_tokens":0}}}
+      data: {"id":"gen-1761054186-i7sVLSLSYe9xbfqthPh4","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054186,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":282,"completion_tokens":121,"total_tokens":403,"cost":0.00029771,"is_byok":false,"prompt_tokens_details":{"cached_tokens":281,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00003151,"upstream_inference_completions_cost":0.0002662},"completion_tokens_details":{"reasoning_tokens":57,"image_tokens":0}}}
 
       data: [DONE]
 
@@ -259,22 +193,22 @@ interactions:
       - text/event-stream
     status: 200 OK
     code: 200
-    duration: 767.975667ms
+    duration: 507.268375ms
 - id: 1
   request:
     proto: HTTP/1.1
     proto_major: 1
     proto_minor: 1
-    content_length: 1379
+    content_length: 1671
     host: ""

providertests/testdata/TestOpenRouterCommon/glm-4.5/simple.yaml 🔗

@@ -15,7 +15,7 @@ interactions:
       Content-Type:
       - application/json
       User-Agent:
-      - OpenAI/Go 2.3.0
+      - OpenAI/Go 2.7.1
     url: https://openrouter.ai/api/v1/chat/completions
     method: POST
   response:
@@ -24,10 +24,10 @@ interactions:
     proto_minor: 0
     content_length: -1
     uncompressed: true

providertests/testdata/TestOpenRouterCommon/glm-4.5/simple_streaming.yaml 🔗

@@ -15,7 +15,7 @@ interactions:
       Content-Type:
       - application/json
       User-Agent:
-      - OpenAI/Go 2.3.0
+      - OpenAI/Go 2.7.1
     url: https://openrouter.ai/api/v1/chat/completions
     method: POST
   response:
@@ -24,177 +24,117 @@ interactions:
     proto_minor: 0
     content_length: -1
     body: |+
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n","reasoning_details":[{"type":"reasoning.text","text":"\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.text","text":"The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n","reasoning_details":[{"type":"reasoning.text","text":"\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" person","reasoning_details":[{"type":"reasoning.text","text":" person","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.text","text":"The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" person","reasoning_details":[{"type":"reasoning.text","text":" person","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asking","reasoning_details":[{"type":"reasoning.text","text":" asking","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is asking","reasoning_details":[{"type":"reasoning.text","text":" is asking","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" me","reasoning_details":[{"type":"reasoning.text","text":" me","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" me to","reasoning_details":[{"type":"reasoning.text","text":" me to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" say \"","reasoning_details":[{"type":"reasoning.text","text":" say \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" say","reasoning_details":[{"type":"reasoning.text","text":" say","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi\"","reasoning_details":[{"type":"reasoning.text","text":"hi\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in Portuguese","reasoning_details":[{"type":"reasoning.text","text":" in Portuguese","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi","reasoning_details":[{"type":"reasoning.text","text":"hi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":". I","reasoning_details":[{"type":"reasoning.text","text":". I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.text","text":" should","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provide the","reasoning_details":[{"type":"reasoning.text","text":" provide the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese","reasoning_details":[{"type":"reasoning.text","text":" Portuguese","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese translation","reasoning_details":[{"type":"reasoning.text","text":" Portuguese translation","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of","reasoning_details":[{"type":"reasoning.text","text":" of","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" The","reasoning_details":[{"type":"reasoning.text","text":" The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"hi","reasoning_details":[{"type":"reasoning.text","text":" \"hi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese","reasoning_details":[{"type":"reasoning.text","text":" Portuguese","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\" or","reasoning_details":[{"type":"reasoning.text","text":"\" or","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" word","reasoning_details":[{"type":"reasoning.text","text":" word","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"hello","reasoning_details":[{"type":"reasoning.text","text":" \"hello","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\".\n\nThe","reasoning_details":[{"type":"reasoning.text","text":"\".\n\nThe","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" most common","reasoning_details":[{"type":"reasoning.text","text":" most common","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi","reasoning_details":[{"type":"reasoning.text","text":"hi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" way to","reasoning_details":[{"type":"reasoning.text","text":" way to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" say \"","reasoning_details":[{"type":"reasoning.text","text":" say \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.text","text":" or","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi\"","reasoning_details":[{"type":"reasoning.text","text":"hi\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or \"","reasoning_details":[{"type":"reasoning.text","text":" or \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hello","reasoning_details":[{"type":"reasoning.text","text":"hello","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hello\"","reasoning_details":[{"type":"reasoning.text","text":"hello\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in Portuguese","reasoning_details":[{"type":"reasoning.text","text":" in Portuguese","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is \"","reasoning_details":[{"type":"reasoning.text","text":" is \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Olá","reasoning_details":[{"type":"reasoning.text","text":"Olá","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Ol","reasoning_details":[{"type":"reasoning.text","text":"Ol","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\". There","reasoning_details":[{"type":"reasoning.text","text":"\". There","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"á","reasoning_details":[{"type":"reasoning.text","text":"á","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\".","reasoning_details":[{"type":"reasoning.text","text":"\".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" also \"","reasoning_details":[{"type":"reasoning.text","text":" also \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi\"","reasoning_details":[{"type":"reasoning.text","text":"Oi\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'ll","reasoning_details":[{"type":"reasoning.text","text":"'ll","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" which is","reasoning_details":[{"type":"reasoning.text","text":" which is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provide","reasoning_details":[{"type":"reasoning.text","text":" provide","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more informal","reasoning_details":[{"type":"reasoning.text","text":" more informal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.text","text":" this","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and commonly","reasoning_details":[{"type":"reasoning.text","text":" and commonly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" translation","reasoning_details":[{"type":"reasoning.text","text":" translation","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" used in","reasoning_details":[{"type":"reasoning.text","text":" used in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Brazil.","reasoning_details":[{"type":"reasoning.text","text":" Brazil.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" maybe","reasoning_details":[{"type":"reasoning.text","text":" maybe","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" give","reasoning_details":[{"type":"reasoning.text","text":" give","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'ll provide","reasoning_details":[{"type":"reasoning.text","text":"'ll provide","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both options","reasoning_details":[{"type":"reasoning.text","text":" both options","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" little","reasoning_details":[{"type":"reasoning.text","text":" little","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" additional","reasoning_details":[{"type":"reasoning.text","text":" additional","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" explain the","reasoning_details":[{"type":"reasoning.text","text":" explain the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" context","reasoning_details":[{"type":"reasoning.text","text":" context","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" difference.","reasoning_details":[{"type":"reasoning.text","text":" difference.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" about","reasoning_details":[{"type":"reasoning.text","text":" about","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"In","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese","reasoning_details":[{"type":"reasoning.text","text":" Portuguese","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" Portuguese,","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greetings","reasoning_details":[{"type":"reasoning.text","text":" greetings","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" you can","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" say \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"Hi","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"hi\"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" in a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":" Portuguese","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" couple","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" of ways","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n\n-","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"Ol","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"Ol","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"á","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"á\"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"!\"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" - This","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
 
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" is the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" standard,","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" slightly","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" more","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" formal greeting","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" used","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" in both","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" Brazil","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" and Portugal","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":".\n\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"- \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"Oi\"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" - This","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" is a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" more informal","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" greeting,","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" commonly used","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" in Brazil","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":".\n\nBoth","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" are widely","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" understood,","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" so","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" you can","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" use either","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" depending on","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" the situation","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" and level","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":" of form","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"ality.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
-      data: {"id":"gen-1758885023-eRgSIBBLiC1Ehs7cSUqS","provider":"DeepInfra","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885023,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":16,"completion_tokens":151,"total_tokens":167,"cost":0.000248,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000064,"upstream_inference_completions_cost":0.0002416},"completion_tokens_details":{"reasoning_tokens":80,"image_tokens":0}}}
+      data: {"id":"gen-1761054165-6sCbjZKZvMVLtzidgYHn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054165,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":16,"completion_tokens":57,"total_tokens":73,"cost":0.00012765,"is_byok":false,"prompt_tokens_details":{"cached_tokens":15,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00000225,"upstream_inference_completions_cost":0.0001254},"completion_tokens_details":{"reasoning_tokens":52,"image_tokens":0}}}
 
       data: [DONE]
 
@@ -203,4 +143,4 @@ interactions:
       - text/event-stream
     status: 200 OK
     code: 200
-    duration: 731.444625ms
+    duration: 474.603209ms

providertests/testdata/TestOpenRouterCommon/glm-4.5/tool.yaml 🔗

@@ -15,7 +15,7 @@ interactions:
       Content-Type:
       - application/json
       User-Agent:
-      - OpenAI/Go 2.3.0
+      - OpenAI/Go 2.7.1
     url: https://openrouter.ai/api/v1/chat/completions
     method: POST
   response:
@@ -24,28 +24,28 @@ interactions:
     proto_minor: 0
     content_length: -1
     uncompressed: true

providertests/testdata/TestOpenRouterCommon/glm-4.5/tool_streaming.yaml 🔗

@@ -15,7 +15,7 @@ interactions:
       Content-Type:
       - application/json
       User-Agent:
-      - OpenAI/Go 2.3.0
+      - OpenAI/Go 2.7.1
     url: https://openrouter.ai/api/v1/chat/completions
     method: POST
   response:
@@ -24,113 +24,133 @@ interactions:
     proto_minor: 0
     content_length: -1
     body: |+
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n","reasoning_details":[{"type":"reasoning.text","text":"\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.text","text":"The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.text","text":"The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asking","reasoning_details":[{"type":"reasoning.text","text":" asking","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asking","reasoning_details":[{"type":"reasoning.text","text":" asking","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.text","text":" Florence","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.text","text":" Florence","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.text","text":" Italy","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.text","text":" Italy","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" have","reasoning_details":[{"type":"reasoning.text","text":" have","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.text","text":" need","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.text","text":" use","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.text","text":" function","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" available","reasoning_details":[{"type":"reasoning.text","text":" available","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.text","text":" that","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.text","text":" function","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" takes","reasoning_details":[{"type":"reasoning.text","text":" takes","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" get","reasoning_details":[{"type":"reasoning.text","text":" get","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.text","text":" location","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.text","text":" this","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parameter","reasoning_details":[{"type":"reasoning.text","text":" parameter","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information","reasoning_details":[{"type":"reasoning.text","text":" information","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" The","reasoning_details":[{"type":"reasoning.text","text":" The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" The","reasoning_details":[{"type":"reasoning.text","text":" The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.text","text":" function","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" specified","reasoning_details":[{"type":"reasoning.text","text":" specified","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" requires","reasoning_details":[{"type":"reasoning.text","text":" requires","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Flo","reasoning_details":[{"type":"reasoning.text","text":"Flo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"rence","reasoning_details":[{"type":"reasoning.text","text":"rence","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"location","reasoning_details":[{"type":"reasoning.text","text":"location","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.text","text":" Italy","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parameter","reasoning_details":[{"type":"reasoning.text","text":" parameter","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.text","text":" as","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.text","text":" location","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" has","reasoning_details":[{"type":"reasoning.text","text":" has","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" so","reasoning_details":[{"type":"reasoning.text","text":" so","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provided","reasoning_details":[{"type":"reasoning.text","text":" provided","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.text","text":" should","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Flo","reasoning_details":[{"type":"reasoning.text","text":"Flo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.text","text":" use","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"rence","reasoning_details":[{"type":"reasoning.text","text":"rence","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.text","text":" that","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" exact","reasoning_details":[{"type":"reasoning.text","text":" exact","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Italy","reasoning_details":[{"type":"reasoning.text","text":"Italy","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" value","reasoning_details":[{"type":"reasoning.text","text":" value","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.text","text":" as","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.text","text":" location","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.text","text":" location","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parameter","reasoning_details":[{"type":"reasoning.text","text":" parameter","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.text","text":" should","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_1bef9a8b0b3f44879ec51f26","index":0,"type":"function","function":{"name":"weather","arguments":"{\"location\": \"Florence,Italy\"}"}}]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.text","text":" use","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.text","text":" this","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885033-p6Mzuk9MAxNDsmWhniqn","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1758885033,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":179,"completion_tokens":69,"total_tokens":248,"cost":0.00023813,"is_byok":false,"prompt_tokens_details":{"cached_tokens":43,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00008633,"upstream_inference_completions_cost":0.0001518},"completion_tokens_details":{"reasoning_tokens":60,"image_tokens":0}}}
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" exact","reasoning_details":[{"type":"reasoning.text","text":" exact","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" value","reasoning_details":[{"type":"reasoning.text","text":" value","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.text","text":" location","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parameter","reasoning_details":[{"type":"reasoning.text","text":" parameter","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_ef1950da96ab46b19bcb66e7","index":0,"type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
+
+      data: {"id":"gen-1761054174-ERVrA11ylJ9lDokqJAho","provider":"Z.AI","model":"z-ai/glm-4.5","object":"chat.completion.chunk","created":1761054174,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":179,"completion_tokens":79,"total_tokens":258,"cost":0.00019398,"is_byok":false,"prompt_tokens_details":{"cached_tokens":178,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00002018,"upstream_inference_completions_cost":0.0001738},"completion_tokens_details":{"reasoning_tokens":71,"image_tokens":0}}}
 
       data: [DONE]
 
@@ -139,22 +159,22 @@ interactions:
       - text/event-stream
     status: 200 OK
     code: 200
-    duration: 2.214089s
+    duration: 459.606542ms
 - id: 1
   request:
     proto: HTTP/1.1
     proto_major: 1
     proto_minor: 1
-    content_length: 802
+    content_length: 1168
     host: ""
-    body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"\n\n","tool_calls":[{"id":"call_1bef9a8b0b3f44879ec51f26","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_1bef9a8b0b3f44879ec51f26","role":"tool"}],"model":"z-ai/glm-4.5","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"usage":{"include":true},"stream":true}'

providertests/testdata/TestOpenRouterCommon/glm-4.6/multi_tool_streaming.yaml 🔗

@@ -24,205 +24,51 @@ interactions:
     proto_minor: 0
     content_length: -1
     body: |+
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.text","text":"The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":"I","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":"'ll","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" wants","reasoning_details":[{"type":"reasoning.text","text":" wants","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":" help","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" me","reasoning_details":[{"type":"reasoning.text","text":" me","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":" you","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":" add","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" add","reasoning_details":[{"type":"reasoning.text","text":" add","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiply","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiply","reasoning_details":[{"type":"reasoning.text","text":" multiply","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":" the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":" numbers","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" numbers","reasoning_details":[{"type":"reasoning.text","text":" numbers","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":"2","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"2","reasoning_details":[{"type":"reasoning.text","text":"2","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":"3","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"3","reasoning_details":[{"type":"reasoning.text","text":"3","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":" using","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":" both","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" According","reasoning_details":[{"type":"reasoning.text","text":" According","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":" operations","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":".\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_a28119d9b7ad43278940407d","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" instructions","reasoning_details":[{"type":"reasoning.text","text":" instructions","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"id":"call_656748576b7648529917bdb0","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.text","text":" should","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" always","reasoning_details":[{"type":"reasoning.text","text":" always","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.text","text":" use","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.text","text":" both","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" add","reasoning_details":[{"type":"reasoning.text","text":" add","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiply","reasoning_details":[{"type":"reasoning.text","text":" multiply","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" at","reasoning_details":[{"type":"reasoning.text","text":" at","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" same","reasoning_details":[{"type":"reasoning.text","text":" same","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" time","reasoning_details":[{"type":"reasoning.text","text":" time","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" So","reasoning_details":[{"type":"reasoning.text","text":" So","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.text","text":" need","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.text","text":" call","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.text","text":" both","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.text","text":" functions","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.text","text":" with","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parameters","reasoning_details":[{"type":"reasoning.text","text":" parameters","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"=","reasoning_details":[{"type":"reasoning.text","text":"=","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"2","reasoning_details":[{"type":"reasoning.text","text":"2","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" b","reasoning_details":[{"type":"reasoning.text","text":" b","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"=","reasoning_details":[{"type":"reasoning.text","text":"=","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"3","reasoning_details":[{"type":"reasoning.text","text":"3","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n\n","reasoning_details":[{"type":"reasoning.text","text":".\n\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Let","reasoning_details":[{"type":"reasoning.text","text":"Let","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" me","reasoning_details":[{"type":"reasoning.text","text":" me","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.text","text":" call","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.text","text":" both","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.text","text":" functions","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":\n","reasoning_details":[{"type":"reasoning.text","text":":\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-","reasoning_details":[{"type":"reasoning.text","text":"-","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" add","reasoning_details":[{"type":"reasoning.text","text":" add","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.text","text":" with","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"=","reasoning_details":[{"type":"reasoning.text","text":"=","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"2","reasoning_details":[{"type":"reasoning.text","text":"2","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" b","reasoning_details":[{"type":"reasoning.text","text":" b","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"=","reasoning_details":[{"type":"reasoning.text","text":"=","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"3","reasoning_details":[{"type":"reasoning.text","text":"3","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n","reasoning_details":[{"type":"reasoning.text","text":"\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-","reasoning_details":[{"type":"reasoning.text","text":"-","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiply","reasoning_details":[{"type":"reasoning.text","text":" multiply","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.text","text":" with","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"=","reasoning_details":[{"type":"reasoning.text","text":"=","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"2","reasoning_details":[{"type":"reasoning.text","text":"2","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" b","reasoning_details":[{"type":"reasoning.text","text":" b","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"=","reasoning_details":[{"type":"reasoning.text","text":"=","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"3","reasoning_details":[{"type":"reasoning.text","text":"3","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"I","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"'ll","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":" add","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":" multiply","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":" the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":" numbers","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"2","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"3","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":" for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":" you","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":".\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_dfc3417d17f0413680a9973e","index":0,"type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_f8e7914c38da41d298a7b774","index":1,"type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
-
-      data: {"id":"gen-1760945382-2RfguZ9tVtfwMfpBmT4G","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945382,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":282,"completion_tokens":140,"total_tokens":422,"cost":0.00035078,"is_byok":false,"prompt_tokens_details":{"cached_tokens":258,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00004278,"upstream_inference_completions_cost":0.000308},"completion_tokens_details":{"reasoning_tokens":76,"image_tokens":0}}}
+      data: {"id":"gen-1761053362-Jlku9vGQnwNXMW4VZrIz","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053362,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":286,"completion_tokens":61,"total_tokens":347,"cost":0.00028473,"is_byok":false,"prompt_tokens_details":{"cached_tokens":43,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00015053,"upstream_inference_completions_cost":0.0001342},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
 
       data: [DONE]
 
@@ -231,15 +77,15 @@ interactions:
       - text/event-stream
     status: 200 OK
     code: 200
-    duration: 558.912ms
+    duration: 682.767666ms
 - id: 1
   request:
     proto: HTTP/1.1
     proto_major: 1
     proto_minor: 1
-    content_length: 1373
+    content_length: 1394
     host: ""

providertests/testdata/TestOpenRouterCommon/glm-4.6/simple_streaming.yaml 🔗

@@ -24,2693 +24,1325 @@ interactions:
     proto_minor: 0
     content_length: -1
     body: |+
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"1","reasoning_details":[{"type":"reasoning.text","text":"1","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"1","reasoning_details":[{"type":"reasoning.text","text":"1","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":". ","reasoning_details":[{"type":"reasoning.text","text":". ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **An","reasoning_details":[{"type":"reasoning.text","text":" **An","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **","reasoning_details":[{"type":"reasoning.text","text":" **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"alyze the","reasoning_details":[{"type":"reasoning.text","text":"alyze the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"An","reasoning_details":[{"type":"reasoning.text","text":"An","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" User","reasoning_details":[{"type":"reasoning.text","text":" User","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"alyze","reasoning_details":[{"type":"reasoning.text","text":"alyze","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s Request","reasoning_details":[{"type":"reasoning.text","text":"'s Request","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":** The","reasoning_details":[{"type":"reasoning.text","text":":** The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user wants","reasoning_details":[{"type":"reasoning.text","text":" user wants","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to know","reasoning_details":[{"type":"reasoning.text","text":" to know","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" request","reasoning_details":[{"type":"reasoning.text","text":" request","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" how to","reasoning_details":[{"type":"reasoning.text","text":" how to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":**","reasoning_details":[{"type":"reasoning.text","text":":**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" say \"","reasoning_details":[{"type":"reasoning.text","text":" say \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" The","reasoning_details":[{"type":"reasoning.text","text":" The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi\"","reasoning_details":[{"type":"reasoning.text","text":"hi\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in Portuguese","reasoning_details":[{"type":"reasoning.text","text":" in Portuguese","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" wants","reasoning_details":[{"type":"reasoning.text","text":" wants","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":". This","reasoning_details":[{"type":"reasoning.text","text":". This","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is a","reasoning_details":[{"type":"reasoning.text","text":" is a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" know","reasoning_details":[{"type":"reasoning.text","text":" know","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" very simple","reasoning_details":[{"type":"reasoning.text","text":" very simple","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" how","reasoning_details":[{"type":"reasoning.text","text":" how","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":", direct","reasoning_details":[{"type":"reasoning.text","text":", direct","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" translation request","reasoning_details":[{"type":"reasoning.text","text":" translation request","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" say","reasoning_details":[{"type":"reasoning.text","text":" say","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n\n2","reasoning_details":[{"type":"reasoning.text","text":".\n\n2","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":". ","reasoning_details":[{"type":"reasoning.text","text":". ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi","reasoning_details":[{"type":"reasoning.text","text":"hi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **Ident","reasoning_details":[{"type":"reasoning.text","text":" **Ident","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ify the","reasoning_details":[{"type":"reasoning.text","text":"ify the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Core Task","reasoning_details":[{"type":"reasoning.text","text":" Core Task","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese","reasoning_details":[{"type":"reasoning.text","text":" Portuguese","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":** The","reasoning_details":[{"type":"reasoning.text","text":":** The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" task is","reasoning_details":[{"type":"reasoning.text","text":" task is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" This","reasoning_details":[{"type":"reasoning.text","text":" This","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to provide","reasoning_details":[{"type":"reasoning.text","text":" to provide","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the Portuguese","reasoning_details":[{"type":"reasoning.text","text":" the Portuguese","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" equivalent","reasoning_details":[{"type":"reasoning.text","text":" equivalent","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" very","reasoning_details":[{"type":"reasoning.text","text":" very","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of the","reasoning_details":[{"type":"reasoning.text","text":" of the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" direct","reasoning_details":[{"type":"reasoning.text","text":" direct","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" English greeting","reasoning_details":[{"type":"reasoning.text","text":" English greeting","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"hi","reasoning_details":[{"type":"reasoning.text","text":" \"hi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simple","reasoning_details":[{"type":"reasoning.text","text":" simple","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\".\n\n3","reasoning_details":[{"type":"reasoning.text","text":"\".\n\n3","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" translation","reasoning_details":[{"type":"reasoning.text","text":" translation","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":". ","reasoning_details":[{"type":"reasoning.text","text":". ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" request","reasoning_details":[{"type":"reasoning.text","text":" request","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **Brain","reasoning_details":[{"type":"reasoning.text","text":" **Brain","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n\n","reasoning_details":[{"type":"reasoning.text","text":".\n\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"storm Portuguese","reasoning_details":[{"type":"reasoning.text","text":"storm Portuguese","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"2","reasoning_details":[{"type":"reasoning.text","text":"2","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" G","reasoning_details":[{"type":"reasoning.text","text":" G","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"reetings:","reasoning_details":[{"type":"reasoning.text","text":"reetings:","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n   ","reasoning_details":[{"type":"reasoning.text","text":"**\n   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **","reasoning_details":[{"type":"reasoning.text","text":" **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *  ","reasoning_details":[{"type":"reasoning.text","text":" *  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Ident","reasoning_details":[{"type":"reasoning.text","text":"Ident","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ify","reasoning_details":[{"type":"reasoning.text","text":"ify","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.text","text":"Oi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\" -","reasoning_details":[{"type":"reasoning.text","text":"\" -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" core","reasoning_details":[{"type":"reasoning.text","text":" core","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" This is","reasoning_details":[{"type":"reasoning.text","text":" This is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" task","reasoning_details":[{"type":"reasoning.text","text":" task","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the most","reasoning_details":[{"type":"reasoning.text","text":" the most","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":**","reasoning_details":[{"type":"reasoning.text","text":":**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" direct and","reasoning_details":[{"type":"reasoning.text","text":" direct and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Translate","reasoning_details":[{"type":"reasoning.text","text":" Translate","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" common translation","reasoning_details":[{"type":"reasoning.text","text":" common translation","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of \"","reasoning_details":[{"type":"reasoning.text","text":" of \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" English","reasoning_details":[{"type":"reasoning.text","text":" English","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi","reasoning_details":[{"type":"reasoning.text","text":"hi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" word","reasoning_details":[{"type":"reasoning.text","text":" word","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\". It","reasoning_details":[{"type":"reasoning.text","text":"\". It","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s informal","reasoning_details":[{"type":"reasoning.text","text":"'s informal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi","reasoning_details":[{"type":"reasoning.text","text":"hi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":", friendly","reasoning_details":[{"type":"reasoning.text","text":", friendly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":", and","reasoning_details":[{"type":"reasoning.text","text":", and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" into","reasoning_details":[{"type":"reasoning.text","text":" into","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" used everywhere","reasoning_details":[{"type":"reasoning.text","text":" used everywhere","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese","reasoning_details":[{"type":"reasoning.text","text":" Portuguese","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in Brazil","reasoning_details":[{"type":"reasoning.text","text":" in Brazil","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n\n","reasoning_details":[{"type":"reasoning.text","text":".\n\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and Portugal","reasoning_details":[{"type":"reasoning.text","text":" and Portugal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"3","reasoning_details":[{"type":"reasoning.text","text":"3","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":". It","reasoning_details":[{"type":"reasoning.text","text":". It","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s the","reasoning_details":[{"type":"reasoning.text","text":"'s the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" perfect primary","reasoning_details":[{"type":"reasoning.text","text":" perfect primary","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **","reasoning_details":[{"type":"reasoning.text","text":" **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" answer.\n","reasoning_details":[{"type":"reasoning.text","text":" answer.\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Brain","reasoning_details":[{"type":"reasoning.text","text":"Brain","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"    *","reasoning_details":[{"type":"reasoning.text","text":"    *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"storm","reasoning_details":[{"type":"reasoning.text","text":"storm","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   \"","reasoning_details":[{"type":"reasoning.text","text":"   \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese","reasoning_details":[{"type":"reasoning.text","text":" Portuguese","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Olá","reasoning_details":[{"type":"reasoning.text","text":"Olá","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greetings","reasoning_details":[{"type":"reasoning.text","text":" greetings","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\" -","reasoning_details":[{"type":"reasoning.text","text":"\" -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.text","text":":","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" This is","reasoning_details":[{"type":"reasoning.text","text":" This is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n","reasoning_details":[{"type":"reasoning.text","text":"**\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the equivalent","reasoning_details":[{"type":"reasoning.text","text":" the equivalent","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of \"","reasoning_details":[{"type":"reasoning.text","text":" of \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Hello\".","reasoning_details":[{"type":"reasoning.text","text":"Hello\".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It's","reasoning_details":[{"type":"reasoning.text","text":" It's","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" slightly more","reasoning_details":[{"type":"reasoning.text","text":" slightly more","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.text","text":"Oi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" formal than","reasoning_details":[{"type":"reasoning.text","text":" formal than","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"Oi","reasoning_details":[{"type":"reasoning.text","text":" \"Oi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" -","reasoning_details":[{"type":"reasoning.text","text":" -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\" but","reasoning_details":[{"type":"reasoning.text","text":"\" but","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" This","reasoning_details":[{"type":"reasoning.text","text":" This","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" still very","reasoning_details":[{"type":"reasoning.text","text":" still very","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" common and","reasoning_details":[{"type":"reasoning.text","text":" common and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" perfectly acceptable","reasoning_details":[{"type":"reasoning.text","text":" perfectly acceptable","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" most","reasoning_details":[{"type":"reasoning.text","text":" most","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in almost","reasoning_details":[{"type":"reasoning.text","text":" in almost","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" direct","reasoning_details":[{"type":"reasoning.text","text":" direct","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" any situation.","reasoning_details":[{"type":"reasoning.text","text":" any situation.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It's","reasoning_details":[{"type":"reasoning.text","text":" It's","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" common","reasoning_details":[{"type":"reasoning.text","text":" common","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a great","reasoning_details":[{"type":"reasoning.text","text":" a great","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" translation","reasoning_details":[{"type":"reasoning.text","text":" translation","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" alternative to","reasoning_details":[{"type":"reasoning.text","text":" alternative to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of","reasoning_details":[{"type":"reasoning.text","text":" of","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provide","reasoning_details":[{"type":"reasoning.text","text":" provide","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n   ","reasoning_details":[{"type":"reasoning.text","text":".\n   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi","reasoning_details":[{"type":"reasoning.text","text":"hi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *  ","reasoning_details":[{"type":"reasoning.text","text":" *  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\"","reasoning_details":[{"type":"reasoning.text","text":".\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"E","reasoning_details":[{"type":"reasoning.text","text":" \"E","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It","reasoning_details":[{"type":"reasoning.text","text":" It","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" aí","reasoning_details":[{"type":"reasoning.text","text":" aí","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?\"","reasoning_details":[{"type":"reasoning.text","text":"?\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" informal","reasoning_details":[{"type":"reasoning.text","text":" informal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" - This","reasoning_details":[{"type":"reasoning.text","text":" - This","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is more","reasoning_details":[{"type":"reasoning.text","text":" is more","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" friendly","reasoning_details":[{"type":"reasoning.text","text":" friendly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" like \"","reasoning_details":[{"type":"reasoning.text","text":" like \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"What's","reasoning_details":[{"type":"reasoning.text","text":"What's","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" up?\" or","reasoning_details":[{"type":"reasoning.text","text":" up?\" or","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" used","reasoning_details":[{"type":"reasoning.text","text":" used","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"Hey","reasoning_details":[{"type":"reasoning.text","text":" \"Hey","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" universally","reasoning_details":[{"type":"reasoning.text","text":" universally","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" there?","reasoning_details":[{"type":"reasoning.text","text":" there?","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\". It","reasoning_details":[{"type":"reasoning.text","text":"\". It","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.text","text":" both","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s very","reasoning_details":[{"type":"reasoning.text","text":"'s very","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Brazil","reasoning_details":[{"type":"reasoning.text","text":" Brazil","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" informal,","reasoning_details":[{"type":"reasoning.text","text":" informal,","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" common in","reasoning_details":[{"type":"reasoning.text","text":" common in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portugal","reasoning_details":[{"type":"reasoning.text","text":" Portugal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Brazil.","reasoning_details":[{"type":"reasoning.text","text":" Brazil.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It's","reasoning_details":[{"type":"reasoning.text","text":" It's","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It","reasoning_details":[{"type":"reasoning.text","text":" It","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a good","reasoning_details":[{"type":"reasoning.text","text":" a good","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" secondary option","reasoning_details":[{"type":"reasoning.text","text":" secondary option","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to show","reasoning_details":[{"type":"reasoning.text","text":" to show","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" equivalent","reasoning_details":[{"type":"reasoning.text","text":" equivalent","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more nu","reasoning_details":[{"type":"reasoning.text","text":" more nu","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of","reasoning_details":[{"type":"reasoning.text","text":" of","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ance.\n","reasoning_details":[{"type":"reasoning.text","text":"ance.\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"    *","reasoning_details":[{"type":"reasoning.text","text":"    *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Hi","reasoning_details":[{"type":"reasoning.text","text":"Hi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   \"","reasoning_details":[{"type":"reasoning.text","text":"   \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Tudo","reasoning_details":[{"type":"reasoning.text","text":"Tudo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.text","text":" or","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" bem?\"","reasoning_details":[{"type":"reasoning.text","text":" bem?\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" -","reasoning_details":[{"type":"reasoning.text","text":" -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Hey","reasoning_details":[{"type":"reasoning.text","text":"Hey","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" This means","reasoning_details":[{"type":"reasoning.text","text":" This means","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\"\n","reasoning_details":[{"type":"reasoning.text","text":".\"\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"All","reasoning_details":[{"type":"reasoning.text","text":" \"All","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" good?\"","reasoning_details":[{"type":"reasoning.text","text":" good?\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or \"","reasoning_details":[{"type":"reasoning.text","text":" or \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"How are","reasoning_details":[{"type":"reasoning.text","text":"How are","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" you?\".","reasoning_details":[{"type":"reasoning.text","text":" you?\".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Ol","reasoning_details":[{"type":"reasoning.text","text":"Ol","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It's","reasoning_details":[{"type":"reasoning.text","text":" It's","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"á","reasoning_details":[{"type":"reasoning.text","text":"á","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" often used","reasoning_details":[{"type":"reasoning.text","text":" often used","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" -","reasoning_details":[{"type":"reasoning.text","text":" -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"as*","reasoning_details":[{"type":"reasoning.text","text":"as*","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" This","reasoning_details":[{"type":"reasoning.text","text":" This","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a greeting","reasoning_details":[{"type":"reasoning.text","text":" a greeting","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":", similar","reasoning_details":[{"type":"reasoning.text","text":", similar","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to \"","reasoning_details":[{"type":"reasoning.text","text":" to \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" standard","reasoning_details":[{"type":"reasoning.text","text":" standard","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"How's","reasoning_details":[{"type":"reasoning.text","text":"How's","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it going?","reasoning_details":[{"type":"reasoning.text","text":" it going?","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" slightly","reasoning_details":[{"type":"reasoning.text","text":" slightly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\". Another","reasoning_details":[{"type":"reasoning.text","text":"\". Another","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more","reasoning_details":[{"type":"reasoning.text","text":" more","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" good,","reasoning_details":[{"type":"reasoning.text","text":" good,","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" formal","reasoning_details":[{"type":"reasoning.text","text":" formal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" slightly","reasoning_details":[{"type":"reasoning.text","text":" slightly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greeting","reasoning_details":[{"type":"reasoning.text","text":" greeting","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more advanced","reasoning_details":[{"type":"reasoning.text","text":" more advanced","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" option","reasoning_details":[{"type":"reasoning.text","text":" option","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It","reasoning_details":[{"type":"reasoning.text","text":" It","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n   ","reasoning_details":[{"type":"reasoning.text","text":".\n   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *  ","reasoning_details":[{"type":"reasoning.text","text":" *  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"B","reasoning_details":[{"type":"reasoning.text","text":" \"B","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" equivalent","reasoning_details":[{"type":"reasoning.text","text":" equivalent","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"om dia","reasoning_details":[{"type":"reasoning.text","text":"om dia","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of","reasoning_details":[{"type":"reasoning.text","text":" of","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\" /","reasoning_details":[{"type":"reasoning.text","text":"\" /","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"Bo","reasoning_details":[{"type":"reasoning.text","text":" \"Bo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Hello","reasoning_details":[{"type":"reasoning.text","text":"Hello","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"a tarde","reasoning_details":[{"type":"reasoning.text","text":"a tarde","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\"","reasoning_details":[{"type":"reasoning.text","text":".\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\" /","reasoning_details":[{"type":"reasoning.text","text":"\" /","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It","reasoning_details":[{"type":"reasoning.text","text":" It","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"Bo","reasoning_details":[{"type":"reasoning.text","text":" \"Bo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"a noite","reasoning_details":[{"type":"reasoning.text","text":"a noite","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" also","reasoning_details":[{"type":"reasoning.text","text":" also","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\" -","reasoning_details":[{"type":"reasoning.text","text":"\" -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" used","reasoning_details":[{"type":"reasoning.text","text":" used","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" These","reasoning_details":[{"type":"reasoning.text","text":" These","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" are \"","reasoning_details":[{"type":"reasoning.text","text":" are \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.text","text":" both","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Good morning\",","reasoning_details":[{"type":"reasoning.text","text":"Good morning\",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Brazil","reasoning_details":[{"type":"reasoning.text","text":" Brazil","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"Good","reasoning_details":[{"type":"reasoning.text","text":" \"Good","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" afternoon\",","reasoning_details":[{"type":"reasoning.text","text":" afternoon\",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portugal","reasoning_details":[{"type":"reasoning.text","text":" Portugal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and \"","reasoning_details":[{"type":"reasoning.text","text":" and \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Good night","reasoning_details":[{"type":"reasoning.text","text":"Good night","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It","reasoning_details":[{"type":"reasoning.text","text":" It","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"/even","reasoning_details":[{"type":"reasoning.text","text":"/even","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ing\".","reasoning_details":[{"type":"reasoning.text","text":"ing\".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" They are","reasoning_details":[{"type":"reasoning.text","text":" They are","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" very","reasoning_details":[{"type":"reasoning.text","text":" very","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" also","reasoning_details":[{"type":"reasoning.text","text":" also","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" safe","reasoning_details":[{"type":"reasoning.text","text":" safe","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greetings","reasoning_details":[{"type":"reasoning.text","text":" greetings","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" correct","reasoning_details":[{"type":"reasoning.text","text":" correct","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but they","reasoning_details":[{"type":"reasoning.text","text":" but they","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" option","reasoning_details":[{"type":"reasoning.text","text":" option","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" are time","reasoning_details":[{"type":"reasoning.text","text":" are time","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n","reasoning_details":[{"type":"reasoning.text","text":".\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-specific","reasoning_details":[{"type":"reasoning.text","text":"-specific","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":". While","reasoning_details":[{"type":"reasoning.text","text":". While","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" not a","reasoning_details":[{"type":"reasoning.text","text":" not a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" direct translation","reasoning_details":[{"type":"reasoning.text","text":" direct translation","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of \"","reasoning_details":[{"type":"reasoning.text","text":" of \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"E","reasoning_details":[{"type":"reasoning.text","text":"E","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi\",","reasoning_details":[{"type":"reasoning.text","text":"hi\",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" they are","reasoning_details":[{"type":"reasoning.text","text":" they are","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"í","reasoning_details":[{"type":"reasoning.text","text":"í","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" essential","reasoning_details":[{"type":"reasoning.text","text":" essential","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?\"","reasoning_details":[{"type":"reasoning.text","text":"?\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greetings in","reasoning_details":[{"type":"reasoning.text","text":" greetings in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" -","reasoning_details":[{"type":"reasoning.text","text":" -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese and","reasoning_details":[{"type":"reasoning.text","text":" Portuguese and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" This","reasoning_details":[{"type":"reasoning.text","text":" This","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" worth mentioning","reasoning_details":[{"type":"reasoning.text","text":" worth mentioning","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" very","reasoning_details":[{"type":"reasoning.text","text":" very","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" informal","reasoning_details":[{"type":"reasoning.text","text":" informal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more","reasoning_details":[{"type":"reasoning.text","text":" more","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" complete answer","reasoning_details":[{"type":"reasoning.text","text":" complete answer","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" common","reasoning_details":[{"type":"reasoning.text","text":" common","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n\n4","reasoning_details":[{"type":"reasoning.text","text":".\n\n4","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":". ","reasoning_details":[{"type":"reasoning.text","text":". ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Brazil","reasoning_details":[{"type":"reasoning.text","text":" Brazil","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **Structure","reasoning_details":[{"type":"reasoning.text","text":" **Structure","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the Answer","reasoning_details":[{"type":"reasoning.text","text":" the Answer","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It","reasoning_details":[{"type":"reasoning.text","text":" It","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":** A","reasoning_details":[{"type":"reasoning.text","text":":** A","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" good answer","reasoning_details":[{"type":"reasoning.text","text":" good answer","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" like","reasoning_details":[{"type":"reasoning.text","text":" like","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should be","reasoning_details":[{"type":"reasoning.text","text":" should be","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clear,","reasoning_details":[{"type":"reasoning.text","text":" clear,","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"What","reasoning_details":[{"type":"reasoning.text","text":"What","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" helpful","reasoning_details":[{"type":"reasoning.text","text":" helpful","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":", and","reasoning_details":[{"type":"reasoning.text","text":", and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" up","reasoning_details":[{"type":"reasoning.text","text":" up","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provide context","reasoning_details":[{"type":"reasoning.text","text":" provide context","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?\"","reasoning_details":[{"type":"reasoning.text","text":"?\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.text","text":" or","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.text","text":" I'll","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" structure it","reasoning_details":[{"type":"reasoning.text","text":" structure it","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"How","reasoning_details":[{"type":"reasoning.text","text":"How","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" like this","reasoning_details":[{"type":"reasoning.text","text":" like this","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":\n\n   ","reasoning_details":[{"type":"reasoning.text","text":":\n\n   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.text","text":" it","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *  ","reasoning_details":[{"type":"reasoning.text","text":" *  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" going","reasoning_details":[{"type":"reasoning.text","text":" going","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **Direct","reasoning_details":[{"type":"reasoning.text","text":" **Direct","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?","reasoning_details":[{"type":"reasoning.text","text":"?","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Answer First","reasoning_details":[{"type":"reasoning.text","text":" Answer First","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\".","reasoning_details":[{"type":"reasoning.text","text":"\".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":** Start","reasoning_details":[{"type":"reasoning.text","text":":** Start","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It","reasoning_details":[{"type":"reasoning.text","text":" It","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with the","reasoning_details":[{"type":"reasoning.text","text":" with the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" most common","reasoning_details":[{"type":"reasoning.text","text":" most common","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" not","reasoning_details":[{"type":"reasoning.text","text":" not","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and direct","reasoning_details":[{"type":"reasoning.text","text":" and direct","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" translation.","reasoning_details":[{"type":"reasoning.text","text":" translation.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" direct","reasoning_details":[{"type":"reasoning.text","text":" direct","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" This immediately","reasoning_details":[{"type":"reasoning.text","text":" This immediately","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" translation","reasoning_details":[{"type":"reasoning.text","text":" translation","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" satisfies the","reasoning_details":[{"type":"reasoning.text","text":" satisfies the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of","reasoning_details":[{"type":"reasoning.text","text":" of","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user's","reasoning_details":[{"type":"reasoning.text","text":" user's","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" request.","reasoning_details":[{"type":"reasoning.text","text":" request.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi","reasoning_details":[{"type":"reasoning.text","text":"hi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"Oi","reasoning_details":[{"type":"reasoning.text","text":" \"Oi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",\"","reasoning_details":[{"type":"reasoning.text","text":",\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!\" is","reasoning_details":[{"type":"reasoning.text","text":"!\" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but","reasoning_details":[{"type":"reasoning.text","text":" but","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the best","reasoning_details":[{"type":"reasoning.text","text":" the best","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.text","text":" it","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" choice.\n","reasoning_details":[{"type":"reasoning.text","text":" choice.\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.text","text":" functions","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"    *","reasoning_details":[{"type":"reasoning.text","text":"    *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" similarly","reasoning_details":[{"type":"reasoning.text","text":" similarly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   **","reasoning_details":[{"type":"reasoning.text","text":"   **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.text","text":" as","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Provide a","reasoning_details":[{"type":"reasoning.text","text":"Provide a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" S","reasoning_details":[{"type":"reasoning.text","text":" S","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" casual","reasoning_details":[{"type":"reasoning.text","text":" casual","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"lightly More","reasoning_details":[{"type":"reasoning.text","text":"lightly More","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greeting","reasoning_details":[{"type":"reasoning.text","text":" greeting","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Formal Alternative:**","reasoning_details":[{"type":"reasoning.text","text":" Formal Alternative:**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n","reasoning_details":[{"type":"reasoning.text","text":".\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Int","reasoning_details":[{"type":"reasoning.text","text":" Int","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"roduce \"","reasoning_details":[{"type":"reasoning.text","text":"roduce \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Olá","reasoning_details":[{"type":"reasoning.text","text":"Olá","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.text","text":" as","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"T","reasoning_details":[{"type":"reasoning.text","text":"T","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"udo","reasoning_details":[{"type":"reasoning.text","text":"udo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"Hello","reasoning_details":[{"type":"reasoning.text","text":" \"Hello","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" bem","reasoning_details":[{"type":"reasoning.text","text":" bem","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\" equivalent","reasoning_details":[{"type":"reasoning.text","text":"\" equivalent","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?\"","reasoning_details":[{"type":"reasoning.text","text":"?\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":". Explain","reasoning_details":[{"type":"reasoning.text","text":". Explain","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" -","reasoning_details":[{"type":"reasoning.text","text":" -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the subtle","reasoning_details":[{"type":"reasoning.text","text":" the subtle","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" This","reasoning_details":[{"type":"reasoning.text","text":" This","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" difference in","reasoning_details":[{"type":"reasoning.text","text":" difference in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" means","reasoning_details":[{"type":"reasoning.text","text":" means","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" formality","reasoning_details":[{"type":"reasoning.text","text":" formality","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":". This","reasoning_details":[{"type":"reasoning.text","text":". This","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Is","reasoning_details":[{"type":"reasoning.text","text":"Is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" adds value","reasoning_details":[{"type":"reasoning.text","text":" adds value","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" everything","reasoning_details":[{"type":"reasoning.text","text":" everything","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n   ","reasoning_details":[{"type":"reasoning.text","text":".\n   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" okay","reasoning_details":[{"type":"reasoning.text","text":" okay","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *  ","reasoning_details":[{"type":"reasoning.text","text":" *  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?\"","reasoning_details":[{"type":"reasoning.text","text":"?\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **Add","reasoning_details":[{"type":"reasoning.text","text":" **Add","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.text","text":" or","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" More","reasoning_details":[{"type":"reasoning.text","text":" More","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Casual","reasoning_details":[{"type":"reasoning.text","text":" Casual","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"How","reasoning_details":[{"type":"reasoning.text","text":"How","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"/Context","reasoning_details":[{"type":"reasoning.text","text":"/Context","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" are","reasoning_details":[{"type":"reasoning.text","text":" are","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ual Options","reasoning_details":[{"type":"reasoning.text","text":"ual Options","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" you","reasoning_details":[{"type":"reasoning.text","text":" you","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":** Include","reasoning_details":[{"type":"reasoning.text","text":":** Include","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?","reasoning_details":[{"type":"reasoning.text","text":"?","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greetings","reasoning_details":[{"type":"reasoning.text","text":" greetings","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\".","reasoning_details":[{"type":"reasoning.text","text":"\".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" like \"","reasoning_details":[{"type":"reasoning.text","text":" like \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It","reasoning_details":[{"type":"reasoning.text","text":" It","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"E a","reasoning_details":[{"type":"reasoning.text","text":"E a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"í?\"","reasoning_details":[{"type":"reasoning.text","text":"í?\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" often","reasoning_details":[{"type":"reasoning.text","text":" often","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and \"","reasoning_details":[{"type":"reasoning.text","text":" and \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" used","reasoning_details":[{"type":"reasoning.text","text":" used","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Tudo","reasoning_details":[{"type":"reasoning.text","text":"Tudo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.text","text":" as","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" bem?\".","reasoning_details":[{"type":"reasoning.text","text":" bem?\".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" This shows","reasoning_details":[{"type":"reasoning.text","text":" This shows","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greeting","reasoning_details":[{"type":"reasoning.text","text":" greeting","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a deeper","reasoning_details":[{"type":"reasoning.text","text":" a deeper","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" understanding of the","reasoning_details":[{"type":"reasoning.text","text":" understanding of the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" similar","reasoning_details":[{"type":"reasoning.text","text":" similar","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" language and","reasoning_details":[{"type":"reasoning.text","text":" language and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" how people","reasoning_details":[{"type":"reasoning.text","text":" how people","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" actually speak","reasoning_details":[{"type":"reasoning.text","text":" actually speak","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"E","reasoning_details":[{"type":"reasoning.text","text":"E","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":". I","reasoning_details":[{"type":"reasoning.text","text":". I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should explain","reasoning_details":[{"type":"reasoning.text","text":" should explain","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"í","reasoning_details":[{"type":"reasoning.text","text":"í","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" what they","reasoning_details":[{"type":"reasoning.text","text":" what they","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?","reasoning_details":[{"type":"reasoning.text","text":"?","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" mean (\"","reasoning_details":[{"type":"reasoning.text","text":" mean (\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\".","reasoning_details":[{"type":"reasoning.text","text":"\".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"What's","reasoning_details":[{"type":"reasoning.text","text":"What's","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Again","reasoning_details":[{"type":"reasoning.text","text":" Again","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" up?\", \"","reasoning_details":[{"type":"reasoning.text","text":" up?\", \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"How are","reasoning_details":[{"type":"reasoning.text","text":"How are","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" not","reasoning_details":[{"type":"reasoning.text","text":" not","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" you?","reasoning_details":[{"type":"reasoning.text","text":" you?","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\").\n   ","reasoning_details":[{"type":"reasoning.text","text":"\").\n   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" direct","reasoning_details":[{"type":"reasoning.text","text":" direct","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *  ","reasoning_details":[{"type":"reasoning.text","text":" *  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" translation","reasoning_details":[{"type":"reasoning.text","text":" translation","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **M","reasoning_details":[{"type":"reasoning.text","text":" **M","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of","reasoning_details":[{"type":"reasoning.text","text":" of","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ention Time","reasoning_details":[{"type":"reasoning.text","text":"ention Time","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-of","reasoning_details":[{"type":"reasoning.text","text":"-of","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi","reasoning_details":[{"type":"reasoning.text","text":"hi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-Day Greetings","reasoning_details":[{"type":"reasoning.text","text":"-Day Greetings","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",\"","reasoning_details":[{"type":"reasoning.text","text":",\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":** Include","reasoning_details":[{"type":"reasoning.text","text":":** Include","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but","reasoning_details":[{"type":"reasoning.text","text":" but","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"B","reasoning_details":[{"type":"reasoning.text","text":" \"B","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" serves","reasoning_details":[{"type":"reasoning.text","text":" serves","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"om dia,\"","reasoning_details":[{"type":"reasoning.text","text":"om dia,\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"Bo","reasoning_details":[{"type":"reasoning.text","text":" \"Bo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" similar","reasoning_details":[{"type":"reasoning.text","text":" similar","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"a tarde","reasoning_details":[{"type":"reasoning.text","text":"a tarde","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" purpose","reasoning_details":[{"type":"reasoning.text","text":" purpose","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",\" and","reasoning_details":[{"type":"reasoning.text","text":",\" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"Bo","reasoning_details":[{"type":"reasoning.text","text":" \"Bo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" conversation","reasoning_details":[{"type":"reasoning.text","text":" conversation","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"a noite","reasoning_details":[{"type":"reasoning.text","text":"a noite","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n","reasoning_details":[{"type":"reasoning.text","text":".\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\" This","reasoning_details":[{"type":"reasoning.text","text":".\" This","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is crucial","reasoning_details":[{"type":"reasoning.text","text":" is crucial","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for anyone","reasoning_details":[{"type":"reasoning.text","text":" for anyone","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" actually","reasoning_details":[{"type":"reasoning.text","text":" actually","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" trying to","reasoning_details":[{"type":"reasoning.text","text":" trying to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"B","reasoning_details":[{"type":"reasoning.text","text":"B","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" speak","reasoning_details":[{"type":"reasoning.text","text":" speak","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"om","reasoning_details":[{"type":"reasoning.text","text":"om","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese.","reasoning_details":[{"type":"reasoning.text","text":" Portuguese.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" dia","reasoning_details":[{"type":"reasoning.text","text":" dia","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.text","text":" I'll","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" translate","reasoning_details":[{"type":"reasoning.text","text":" translate","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" /","reasoning_details":[{"type":"reasoning.text","text":" /","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" them and","reasoning_details":[{"type":"reasoning.text","text":" them and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" explain when","reasoning_details":[{"type":"reasoning.text","text":" explain when","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Bo","reasoning_details":[{"type":"reasoning.text","text":"Bo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to use","reasoning_details":[{"type":"reasoning.text","text":" to use","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"a","reasoning_details":[{"type":"reasoning.text","text":"a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" them.\n","reasoning_details":[{"type":"reasoning.text","text":" them.\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tarde","reasoning_details":[{"type":"reasoning.text","text":" tarde","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"    *","reasoning_details":[{"type":"reasoning.text","text":"    *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   **","reasoning_details":[{"type":"reasoning.text","text":"   **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" /","reasoning_details":[{"type":"reasoning.text","text":" /","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Add a","reasoning_details":[{"type":"reasoning.text","text":"Add a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Regional","reasoning_details":[{"type":"reasoning.text","text":" Regional","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Bo","reasoning_details":[{"type":"reasoning.text","text":"Bo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Note (","reasoning_details":[{"type":"reasoning.text","text":" Note (","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"a","reasoning_details":[{"type":"reasoning.text","text":"a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Optional but","reasoning_details":[{"type":"reasoning.text","text":"Optional but","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" noite","reasoning_details":[{"type":"reasoning.text","text":" noite","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" good):","reasoning_details":[{"type":"reasoning.text","text":" good):","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"** Brief","reasoning_details":[{"type":"reasoning.text","text":"** Brief","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" -","reasoning_details":[{"type":"reasoning.text","text":" -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ly mention","reasoning_details":[{"type":"reasoning.text","text":"ly mention","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" These","reasoning_details":[{"type":"reasoning.text","text":" These","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that \"","reasoning_details":[{"type":"reasoning.text","text":" that \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" are","reasoning_details":[{"type":"reasoning.text","text":" are","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi\"","reasoning_details":[{"type":"reasoning.text","text":"Oi\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is extremely","reasoning_details":[{"type":"reasoning.text","text":" is extremely","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Good","reasoning_details":[{"type":"reasoning.text","text":"Good","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" common in","reasoning_details":[{"type":"reasoning.text","text":" common in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" morning","reasoning_details":[{"type":"reasoning.text","text":" morning","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Brazil.","reasoning_details":[{"type":"reasoning.text","text":" Brazil.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",\"","reasoning_details":[{"type":"reasoning.text","text":",\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" While also","reasoning_details":[{"type":"reasoning.text","text":" While also","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" used in","reasoning_details":[{"type":"reasoning.text","text":" used in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Good","reasoning_details":[{"type":"reasoning.text","text":"Good","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portugal, \"","reasoning_details":[{"type":"reasoning.text","text":" Portugal, \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" afternoon","reasoning_details":[{"type":"reasoning.text","text":" afternoon","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Olá","reasoning_details":[{"type":"reasoning.text","text":"Olá","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",\"","reasoning_details":[{"type":"reasoning.text","text":",\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\" might","reasoning_details":[{"type":"reasoning.text","text":"\" might","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be slightly","reasoning_details":[{"type":"reasoning.text","text":" be slightly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more common","reasoning_details":[{"type":"reasoning.text","text":" more common","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Good","reasoning_details":[{"type":"reasoning.text","text":"Good","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as a","reasoning_details":[{"type":"reasoning.text","text":" as a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" evening","reasoning_details":[{"type":"reasoning.text","text":" evening","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" general greeting","reasoning_details":[{"type":"reasoning.text","text":" general greeting","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"/","reasoning_details":[{"type":"reasoning.text","text":"/","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" there.","reasoning_details":[{"type":"reasoning.text","text":" there.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"night","reasoning_details":[{"type":"reasoning.text","text":"night","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" This adds","reasoning_details":[{"type":"reasoning.text","text":" This adds","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\"","reasoning_details":[{"type":"reasoning.text","text":".\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a layer","reasoning_details":[{"type":"reasoning.text","text":" a layer","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" These","reasoning_details":[{"type":"reasoning.text","text":" These","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of expertise","reasoning_details":[{"type":"reasoning.text","text":" of expertise","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" are","reasoning_details":[{"type":"reasoning.text","text":" are","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":". (","reasoning_details":[{"type":"reasoning.text","text":". (","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" time","reasoning_details":[{"type":"reasoning.text","text":" time","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Self","reasoning_details":[{"type":"reasoning.text","text":"Self","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-dependent","reasoning_details":[{"type":"reasoning.text","text":"-dependent","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-correction","reasoning_details":[{"type":"reasoning.text","text":"-correction","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greetings","reasoning_details":[{"type":"reasoning.text","text":" greetings","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":": Keep","reasoning_details":[{"type":"reasoning.text","text":": Keep","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.text","text":" this","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" While","reasoning_details":[{"type":"reasoning.text","text":" While","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simple.","reasoning_details":[{"type":"reasoning.text","text":" simple.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" they","reasoning_details":[{"type":"reasoning.text","text":" they","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Over","reasoning_details":[{"type":"reasoning.text","text":" Over","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" are","reasoning_details":[{"type":"reasoning.text","text":" are","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"complic","reasoning_details":[{"type":"reasoning.text","text":"complic","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greetings","reasoning_details":[{"type":"reasoning.text","text":" greetings","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ating with","reasoning_details":[{"type":"reasoning.text","text":"ating with","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" deep","reasoning_details":[{"type":"reasoning.text","text":" deep","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" they","reasoning_details":[{"type":"reasoning.text","text":" they","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" regional dialect","reasoning_details":[{"type":"reasoning.text","text":" regional dialect","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" aren","reasoning_details":[{"type":"reasoning.text","text":" aren","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"s might","reasoning_details":[{"type":"reasoning.text","text":"s might","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'t","reasoning_details":[{"type":"reasoning.text","text":"'t","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" confuse a","reasoning_details":[{"type":"reasoning.text","text":" confuse a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" beginner.","reasoning_details":[{"type":"reasoning.text","text":" beginner.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" direct","reasoning_details":[{"type":"reasoning.text","text":" direct","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" A simple","reasoning_details":[{"type":"reasoning.text","text":" A simple","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" equivalent","reasoning_details":[{"type":"reasoning.text","text":" equivalent","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" mention","reasoning_details":[{"type":"reasoning.text","text":" mention","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of","reasoning_details":[{"type":"reasoning.text","text":" of","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is enough","reasoning_details":[{"type":"reasoning.text","text":" is enough","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":").\n   ","reasoning_details":[{"type":"reasoning.text","text":").\n   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" time","reasoning_details":[{"type":"reasoning.text","text":" time","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *  ","reasoning_details":[{"type":"reasoning.text","text":" *  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-","reasoning_details":[{"type":"reasoning.text","text":"-","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **Sum","reasoning_details":[{"type":"reasoning.text","text":" **Sum","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"agnostic","reasoning_details":[{"type":"reasoning.text","text":"agnostic","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"marize/","reasoning_details":[{"type":"reasoning.text","text":"marize/","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Con","reasoning_details":[{"type":"reasoning.text","text":"Con","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi","reasoning_details":[{"type":"reasoning.text","text":"hi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"clude:**","reasoning_details":[{"type":"reasoning.text","text":"clude:**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\"\n\n","reasoning_details":[{"type":"reasoning.text","text":".\"\n\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" End with","reasoning_details":[{"type":"reasoning.text","text":" End with","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"4","reasoning_details":[{"type":"reasoning.text","text":"4","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a friendly","reasoning_details":[{"type":"reasoning.text","text":" a friendly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" closing,","reasoning_details":[{"type":"reasoning.text","text":" closing,","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" like \"","reasoning_details":[{"type":"reasoning.text","text":" like \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **","reasoning_details":[{"type":"reasoning.text","text":" **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"So,","reasoning_details":[{"type":"reasoning.text","text":"So,","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Structure","reasoning_details":[{"type":"reasoning.text","text":"Structure","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" you can","reasoning_details":[{"type":"reasoning.text","text":" you can","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'t","reasoning_details":[{"type":"reasoning.text","text":"'t","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" answer","reasoning_details":[{"type":"reasoning.text","text":" answer","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" go wrong with","reasoning_details":[{"type":"reasoning.text","text":" go wrong with","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":**","reasoning_details":[{"type":"reasoning.text","text":":**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 'Oi","reasoning_details":[{"type":"reasoning.text","text":" 'Oi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" A","reasoning_details":[{"type":"reasoning.text","text":" A","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"' or","reasoning_details":[{"type":"reasoning.text","text":"' or","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" good","reasoning_details":[{"type":"reasoning.text","text":" good","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" 'Ol","reasoning_details":[{"type":"reasoning.text","text":" 'Ol","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" answer","reasoning_details":[{"type":"reasoning.text","text":" answer","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"á'","reasoning_details":[{"type":"reasoning.text","text":"á'","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" shouldn","reasoning_details":[{"type":"reasoning.text","text":" shouldn","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!\" to","reasoning_details":[{"type":"reasoning.text","text":"!\" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'t","reasoning_details":[{"type":"reasoning.text","text":"'t","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" reinforce the","reasoning_details":[{"type":"reasoning.text","text":" reinforce the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" just","reasoning_details":[{"type":"reasoning.text","text":" just","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" main points","reasoning_details":[{"type":"reasoning.text","text":" main points","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" give","reasoning_details":[{"type":"reasoning.text","text":" give","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and be","reasoning_details":[{"type":"reasoning.text","text":" and be","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" one","reasoning_details":[{"type":"reasoning.text","text":" one","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" encouraging.\n\n","reasoning_details":[{"type":"reasoning.text","text":" encouraging.\n\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" word","reasoning_details":[{"type":"reasoning.text","text":" word","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"5.","reasoning_details":[{"type":"reasoning.text","text":"5.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  **","reasoning_details":[{"type":"reasoning.text","text":"  **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It","reasoning_details":[{"type":"reasoning.text","text":" It","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Draft the","reasoning_details":[{"type":"reasoning.text","text":"Draft the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.text","text":" should","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" final","reasoning_details":[{"type":"reasoning.text","text":" final","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provide","reasoning_details":[{"type":"reasoning.text","text":" provide","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" response based","reasoning_details":[{"type":"reasoning.text","text":" response based","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" context","reasoning_details":[{"type":"reasoning.text","text":" context","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" on the","reasoning_details":[{"type":"reasoning.text","text":" on the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" structure:","reasoning_details":[{"type":"reasoning.text","text":" structure:","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" options","reasoning_details":[{"type":"reasoning.text","text":" options","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\n   ","reasoning_details":[{"type":"reasoning.text","text":"**\n\n   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *  ","reasoning_details":[{"type":"reasoning.text","text":" *  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" explaining","reasoning_details":[{"type":"reasoning.text","text":" explaining","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *Start","reasoning_details":[{"type":"reasoning.text","text":" *Start","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with \"","reasoning_details":[{"type":"reasoning.text","text":" with \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" nuances","reasoning_details":[{"type":"reasoning.text","text":" nuances","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi!\"","reasoning_details":[{"type":"reasoning.text","text":"Oi!\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"* -","reasoning_details":[{"type":"reasoning.text","text":"* -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" This","reasoning_details":[{"type":"reasoning.text","text":" This","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" The","reasoning_details":[{"type":"reasoning.text","text":" The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" makes","reasoning_details":[{"type":"reasoning.text","text":" makes","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" most common","reasoning_details":[{"type":"reasoning.text","text":" most common","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and direct","reasoning_details":[{"type":"reasoning.text","text":" and direct","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" answer","reasoning_details":[{"type":"reasoning.text","text":" answer","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" way to","reasoning_details":[{"type":"reasoning.text","text":" way to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more","reasoning_details":[{"type":"reasoning.text","text":" more","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" say \"","reasoning_details":[{"type":"reasoning.text","text":" say \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" helpful","reasoning_details":[{"type":"reasoning.text","text":" helpful","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi\".\n","reasoning_details":[{"type":"reasoning.text","text":"hi\".\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"    *","reasoning_details":[{"type":"reasoning.text","text":"    *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" educational","reasoning_details":[{"type":"reasoning.text","text":" educational","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   *","reasoning_details":[{"type":"reasoning.text","text":"   *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n\n","reasoning_details":[{"type":"reasoning.text","text":".\n\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Add \"","reasoning_details":[{"type":"reasoning.text","text":"Add \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Olá","reasoning_details":[{"type":"reasoning.text","text":"Olá","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\"*","reasoning_details":[{"type":"reasoning.text","text":".\"*","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" - Explain","reasoning_details":[{"type":"reasoning.text","text":" - Explain","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **","reasoning_details":[{"type":"reasoning.text","text":" **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it's","reasoning_details":[{"type":"reasoning.text","text":" it's","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Start","reasoning_details":[{"type":"reasoning.text","text":"Start","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" like \"","reasoning_details":[{"type":"reasoning.text","text":" like \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.text","text":" with","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Hello\",","reasoning_details":[{"type":"reasoning.text","text":"Hello\",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a bit","reasoning_details":[{"type":"reasoning.text","text":" a bit","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" most","reasoning_details":[{"type":"reasoning.text","text":" most","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more formal","reasoning_details":[{"type":"reasoning.text","text":" more formal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" direct","reasoning_details":[{"type":"reasoning.text","text":" direct","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but still","reasoning_details":[{"type":"reasoning.text","text":" but still","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" very common","reasoning_details":[{"type":"reasoning.text","text":" very common","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" common","reasoning_details":[{"type":"reasoning.text","text":" common","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n   ","reasoning_details":[{"type":"reasoning.text","text":".\n   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" answer","reasoning_details":[{"type":"reasoning.text","text":" answer","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *  ","reasoning_details":[{"type":"reasoning.text","text":" *  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *Create","reasoning_details":[{"type":"reasoning.text","text":" *Create","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**","reasoning_details":[{"type":"reasoning.text","text":"**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a list","reasoning_details":[{"type":"reasoning.text","text":" a list","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.text","text":" or","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.text","text":"Oi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" bullet","reasoning_details":[{"type":"reasoning.text","text":" bullet","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" points for","reasoning_details":[{"type":"reasoning.text","text":" points for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clarity.*\n","reasoning_details":[{"type":"reasoning.text","text":" clarity.*\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"        *","reasoning_details":[{"type":"reasoning.text","text":"        *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" best","reasoning_details":[{"type":"reasoning.text","text":" best","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   **","reasoning_details":[{"type":"reasoning.text","text":"   **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" candidate","reasoning_details":[{"type":"reasoning.text","text":" candidate","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi!","reasoning_details":[{"type":"reasoning.text","text":"Oi!","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"** (","reasoning_details":[{"type":"reasoning.text","text":"** (","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.text","text":" this","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"oh","reasoning_details":[{"type":"reasoning.text","text":"oh","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-","reasoning_details":[{"type":"reasoning.text","text":"-","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It","reasoning_details":[{"type":"reasoning.text","text":" It","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ee) -","reasoning_details":[{"type":"reasoning.text","text":"ee) -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" The most","reasoning_details":[{"type":"reasoning.text","text":" The most","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" short","reasoning_details":[{"type":"reasoning.text","text":" short","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" common,","reasoning_details":[{"type":"reasoning.text","text":" common,","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" informal \"","reasoning_details":[{"type":"reasoning.text","text":" informal \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" easy","reasoning_details":[{"type":"reasoning.text","text":" easy","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi","reasoning_details":[{"type":"reasoning.text","text":"hi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\".\n       ","reasoning_details":[{"type":"reasoning.text","text":"\".\n       ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" remember","reasoning_details":[{"type":"reasoning.text","text":" remember","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *  ","reasoning_details":[{"type":"reasoning.text","text":" *  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **Ol","reasoning_details":[{"type":"reasoning.text","text":" **Ol","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"á.","reasoning_details":[{"type":"reasoning.text","text":"á.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"** (","reasoning_details":[{"type":"reasoning.text","text":"** (","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" perfect","reasoning_details":[{"type":"reasoning.text","text":" perfect","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"oh-L","reasoning_details":[{"type":"reasoning.text","text":"oh-L","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" match","reasoning_details":[{"type":"reasoning.text","text":" match","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"AH)","reasoning_details":[{"type":"reasoning.text","text":"AH)","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" - The","reasoning_details":[{"type":"reasoning.text","text":" - The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" standard","reasoning_details":[{"type":"reasoning.text","text":" standard","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" inform","reasoning_details":[{"type":"reasoning.text","text":" inform","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"hello","reasoning_details":[{"type":"reasoning.text","text":" \"hello","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ality","reasoning_details":[{"type":"reasoning.text","text":"ality","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\", a","reasoning_details":[{"type":"reasoning.text","text":"\", a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of","reasoning_details":[{"type":"reasoning.text","text":" of","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" little","reasoning_details":[{"type":"reasoning.text","text":" little","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more formal","reasoning_details":[{"type":"reasoning.text","text":" more formal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi","reasoning_details":[{"type":"reasoning.text","text":"hi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but","reasoning_details":[{"type":"reasoning.text","text":" but","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\"\n","reasoning_details":[{"type":"reasoning.text","text":".\"\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" used","reasoning_details":[{"type":"reasoning.text","text":" used","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" everywhere.\n","reasoning_details":[{"type":"reasoning.text","text":" everywhere.\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"    *","reasoning_details":[{"type":"reasoning.text","text":"    *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   *","reasoning_details":[{"type":"reasoning.text","text":"   *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **","reasoning_details":[{"type":"reasoning.text","text":" **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Add a","reasoning_details":[{"type":"reasoning.text","text":"Add a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Provide","reasoning_details":[{"type":"reasoning.text","text":"Provide","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" section for","reasoning_details":[{"type":"reasoning.text","text":" section for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" other","reasoning_details":[{"type":"reasoning.text","text":" other","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" slightly","reasoning_details":[{"type":"reasoning.text","text":" slightly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" common greetings","reasoning_details":[{"type":"reasoning.text","text":" common greetings","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more","reasoning_details":[{"type":"reasoning.text","text":" more","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".*\n       ","reasoning_details":[{"type":"reasoning.text","text":".*\n       ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" formal","reasoning_details":[{"type":"reasoning.text","text":" formal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *  ","reasoning_details":[{"type":"reasoning.text","text":" *  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" alternative","reasoning_details":[{"type":"reasoning.text","text":" alternative","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **E","reasoning_details":[{"type":"reasoning.text","text":" **E","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" aí?","reasoning_details":[{"type":"reasoning.text","text":" aí?","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**","reasoning_details":[{"type":"reasoning.text","text":"**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"** (","reasoning_details":[{"type":"reasoning.text","text":"** (","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"eh ah","reasoning_details":[{"type":"reasoning.text","text":"eh ah","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Ol","reasoning_details":[{"type":"reasoning.text","text":"Ol","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-EE?)","reasoning_details":[{"type":"reasoning.text","text":"-EE?)","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"á","reasoning_details":[{"type":"reasoning.text","text":"á","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" - \"","reasoning_details":[{"type":"reasoning.text","text":" - \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"What's","reasoning_details":[{"type":"reasoning.text","text":"What's","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" up?\"","reasoning_details":[{"type":"reasoning.text","text":" up?\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" (very","reasoning_details":[{"type":"reasoning.text","text":" (very","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" next","reasoning_details":[{"type":"reasoning.text","text":" next","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" informal,","reasoning_details":[{"type":"reasoning.text","text":" informal,","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" logical","reasoning_details":[{"type":"reasoning.text","text":" logical","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" mostly","reasoning_details":[{"type":"reasoning.text","text":" mostly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" choice","reasoning_details":[{"type":"reasoning.text","text":" choice","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in Brazil","reasoning_details":[{"type":"reasoning.text","text":" in Brazil","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":").\n       ","reasoning_details":[{"type":"reasoning.text","text":").\n       ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It","reasoning_details":[{"type":"reasoning.text","text":" It","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *  ","reasoning_details":[{"type":"reasoning.text","text":" *  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **T","reasoning_details":[{"type":"reasoning.text","text":" **T","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" important","reasoning_details":[{"type":"reasoning.text","text":" important","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"udo bem?","reasoning_details":[{"type":"reasoning.text","text":"udo bem?","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"** (","reasoning_details":[{"type":"reasoning.text","text":"** (","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" distinguish","reasoning_details":[{"type":"reasoning.text","text":" distinguish","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"TOO","reasoning_details":[{"type":"reasoning.text","text":"TOO","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" between","reasoning_details":[{"type":"reasoning.text","text":" between","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-doo b","reasoning_details":[{"type":"reasoning.text","text":"-doo b","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"eng?)","reasoning_details":[{"type":"reasoning.text","text":"eng?)","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.text","text":"Oi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" - \"","reasoning_details":[{"type":"reasoning.text","text":" - \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"All good","reasoning_details":[{"type":"reasoning.text","text":"All good","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" (","reasoning_details":[{"type":"reasoning.text","text":" (","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?\" or","reasoning_details":[{"type":"reasoning.text","text":"?\" or","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"inform","reasoning_details":[{"type":"reasoning.text","text":"inform","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"How","reasoning_details":[{"type":"reasoning.text","text":" \"How","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"al","reasoning_details":[{"type":"reasoning.text","text":"al","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" are you","reasoning_details":[{"type":"reasoning.text","text":" are you","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":")","reasoning_details":[{"type":"reasoning.text","text":")","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?\" (","reasoning_details":[{"type":"reasoning.text","text":"?\" (","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"used as","reasoning_details":[{"type":"reasoning.text","text":"used as","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a greeting","reasoning_details":[{"type":"reasoning.text","text":" a greeting","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Ol","reasoning_details":[{"type":"reasoning.text","text":"Ol","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":").\n   ","reasoning_details":[{"type":"reasoning.text","text":").\n   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"á","reasoning_details":[{"type":"reasoning.text","text":"á","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *  ","reasoning_details":[{"type":"reasoning.text","text":" *  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *Add","reasoning_details":[{"type":"reasoning.text","text":" *Add","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" (","reasoning_details":[{"type":"reasoning.text","text":" (","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the time","reasoning_details":[{"type":"reasoning.text","text":" the time","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"standard","reasoning_details":[{"type":"reasoning.text","text":"standard","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-of-day","reasoning_details":[{"type":"reasoning.text","text":"-of-day","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"/s","reasoning_details":[{"type":"reasoning.text","text":"/s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greetings.*\n","reasoning_details":[{"type":"reasoning.text","text":" greetings.*\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"lightly","reasoning_details":[{"type":"reasoning.text","text":"lightly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"        *","reasoning_details":[{"type":"reasoning.text","text":"        *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" formal","reasoning_details":[{"type":"reasoning.text","text":" formal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   **","reasoning_details":[{"type":"reasoning.text","text":"   **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":").\n","reasoning_details":[{"type":"reasoning.text","text":").\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Bom","reasoning_details":[{"type":"reasoning.text","text":"Bom","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" dia**","reasoning_details":[{"type":"reasoning.text","text":" dia**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" (bo","reasoning_details":[{"type":"reasoning.text","text":" (bo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hn","reasoning_details":[{"type":"reasoning.text","text":"hn","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **","reasoning_details":[{"type":"reasoning.text","text":" **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" DEE-","reasoning_details":[{"type":"reasoning.text","text":" DEE-","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Add","reasoning_details":[{"type":"reasoning.text","text":"Add","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ah) -","reasoning_details":[{"type":"reasoning.text","text":"ah) -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" context","reasoning_details":[{"type":"reasoning.text","text":" context","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Good morning","reasoning_details":[{"type":"reasoning.text","text":" Good morning","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n       ","reasoning_details":[{"type":"reasoning.text","text":"\n       ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" regional","reasoning_details":[{"type":"reasoning.text","text":" regional","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *  ","reasoning_details":[{"type":"reasoning.text","text":" *  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" differences","reasoning_details":[{"type":"reasoning.text","text":" differences","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **Bo","reasoning_details":[{"type":"reasoning.text","text":" **Bo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"a tarde","reasoning_details":[{"type":"reasoning.text","text":"a tarde","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**","reasoning_details":[{"type":"reasoning.text","text":"**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"** (","reasoning_details":[{"type":"reasoning.text","text":"** (","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Mention","reasoning_details":[{"type":"reasoning.text","text":" Mention","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"boh","reasoning_details":[{"type":"reasoning.text","text":"boh","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ing","reasoning_details":[{"type":"reasoning.text","text":"ing","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-","reasoning_details":[{"type":"reasoning.text","text":"-","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.text","text":" that","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ah","reasoning_details":[{"type":"reasoning.text","text":"ah","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" TAR-d","reasoning_details":[{"type":"reasoning.text","text":" TAR-d","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.text","text":"Oi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"jee)","reasoning_details":[{"type":"reasoning.text","text":"jee)","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" - Good","reasoning_details":[{"type":"reasoning.text","text":" - Good","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" afternoon\n","reasoning_details":[{"type":"reasoning.text","text":" afternoon\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" very","reasoning_details":[{"type":"reasoning.text","text":" very","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"        *","reasoning_details":[{"type":"reasoning.text","text":"        *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" common","reasoning_details":[{"type":"reasoning.text","text":" common","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   **","reasoning_details":[{"type":"reasoning.text","text":"   **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Boa noite","reasoning_details":[{"type":"reasoning.text","text":"Boa noite","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Brazil","reasoning_details":[{"type":"reasoning.text","text":" Brazil","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"** (","reasoning_details":[{"type":"reasoning.text","text":"** (","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"boh","reasoning_details":[{"type":"reasoning.text","text":"boh","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-ah","reasoning_details":[{"type":"reasoning.text","text":"-ah","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" good","reasoning_details":[{"type":"reasoning.text","text":" good","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" NOY","reasoning_details":[{"type":"reasoning.text","text":" NOY","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" piece","reasoning_details":[{"type":"reasoning.text","text":" piece","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-tche","reasoning_details":[{"type":"reasoning.text","text":"-tche","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of","reasoning_details":[{"type":"reasoning.text","text":" of","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"e) -","reasoning_details":[{"type":"reasoning.text","text":"e) -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information","reasoning_details":[{"type":"reasoning.text","text":" information","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Good evening","reasoning_details":[{"type":"reasoning.text","text":" Good evening","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" / Good","reasoning_details":[{"type":"reasoning.text","text":" / Good","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" While","reasoning_details":[{"type":"reasoning.text","text":" While","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" night\n","reasoning_details":[{"type":"reasoning.text","text":" night\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" also","reasoning_details":[{"type":"reasoning.text","text":" also","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"    *","reasoning_details":[{"type":"reasoning.text","text":"    *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" used","reasoning_details":[{"type":"reasoning.text","text":" used","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   *","reasoning_details":[{"type":"reasoning.text","text":"   *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Add a","reasoning_details":[{"type":"reasoning.text","text":"Add a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portugal","reasoning_details":[{"type":"reasoning.text","text":" Portugal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" concluding sentence","reasoning_details":[{"type":"reasoning.text","text":" concluding sentence","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".* \"","reasoning_details":[{"type":"reasoning.text","text":".* \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.text","text":" it","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"For","reasoning_details":[{"type":"reasoning.text","text":"For","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a simple","reasoning_details":[{"type":"reasoning.text","text":" a simple","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" good","reasoning_details":[{"type":"reasoning.text","text":" good","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" '","reasoning_details":[{"type":"reasoning.text","text":" '","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi',","reasoning_details":[{"type":"reasoning.text","text":"hi',","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be","reasoning_details":[{"type":"reasoning.text","text":" be","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" '","reasoning_details":[{"type":"reasoning.text","text":" '","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" specific","reasoning_details":[{"type":"reasoning.text","text":" specific","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi!'","reasoning_details":[{"type":"reasoning.text","text":"Oi!'","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is your","reasoning_details":[{"type":"reasoning.text","text":" is your","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" best bet","reasoning_details":[{"type":"reasoning.text","text":" best bet","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Ol","reasoning_details":[{"type":"reasoning.text","text":"Ol","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"á","reasoning_details":[{"type":"reasoning.text","text":"á","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" You","reasoning_details":[{"type":"reasoning.text","text":" You","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can't","reasoning_details":[{"type":"reasoning.text","text":" can't","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" go wrong","reasoning_details":[{"type":"reasoning.text","text":" go wrong","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" universally","reasoning_details":[{"type":"reasoning.text","text":" universally","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with it","reasoning_details":[{"type":"reasoning.text","text":" with it","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" understood","reasoning_details":[{"type":"reasoning.text","text":" understood","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!\"\n","reasoning_details":[{"type":"reasoning.text","text":"!\"\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"    *","reasoning_details":[{"type":"reasoning.text","text":"    *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" safe","reasoning_details":[{"type":"reasoning.text","text":" safe","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   *","reasoning_details":[{"type":"reasoning.text","text":"   *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Review and","reasoning_details":[{"type":"reasoning.text","text":"Review and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.text","text":" both","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Refine","reasoning_details":[{"type":"reasoning.text","text":" Refine","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n","reasoning_details":[{"type":"reasoning.text","text":".\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":* Read","reasoning_details":[{"type":"reasoning.text","text":":* Read","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" through the","reasoning_details":[{"type":"reasoning.text","text":" through the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" drafted response","reasoning_details":[{"type":"reasoning.text","text":" drafted response","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":". Is","reasoning_details":[{"type":"reasoning.text","text":". Is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **","reasoning_details":[{"type":"reasoning.text","text":" **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it clear","reasoning_details":[{"type":"reasoning.text","text":" it clear","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Offer","reasoning_details":[{"type":"reasoning.text","text":"Offer","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"? Is","reasoning_details":[{"type":"reasoning.text","text":"? Is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more","reasoning_details":[{"type":"reasoning.text","text":" more","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the pronunciation","reasoning_details":[{"type":"reasoning.text","text":" the pronunciation","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" informal","reasoning_details":[{"type":"reasoning.text","text":" informal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" guide helpful","reasoning_details":[{"type":"reasoning.text","text":" guide helpful","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"/","reasoning_details":[{"type":"reasoning.text","text":"/","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"? (","reasoning_details":[{"type":"reasoning.text","text":"? (","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"col","reasoning_details":[{"type":"reasoning.text","text":"col","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"I","reasoning_details":[{"type":"reasoning.text","text":"I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"lo","reasoning_details":[{"type":"reasoning.text","text":"lo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'ll add","reasoning_details":[{"type":"reasoning.text","text":"'ll add","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"qu","reasoning_details":[{"type":"reasoning.text","text":"qu","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simple","reasoning_details":[{"type":"reasoning.text","text":" simple","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ial","reasoning_details":[{"type":"reasoning.text","text":"ial","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" phonetic","reasoning_details":[{"type":"reasoning.text","text":" phonetic","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" options","reasoning_details":[{"type":"reasoning.text","text":" options","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" spell","reasoning_details":[{"type":"reasoning.text","text":" spell","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ings).","reasoning_details":[{"type":"reasoning.text","text":"ings).","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**","reasoning_details":[{"type":"reasoning.text","text":"**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Is the","reasoning_details":[{"type":"reasoning.text","text":" Is the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" This","reasoning_details":[{"type":"reasoning.text","text":" This","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tone friendly","reasoning_details":[{"type":"reasoning.text","text":" tone friendly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" adds","reasoning_details":[{"type":"reasoning.text","text":" adds","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and helpful","reasoning_details":[{"type":"reasoning.text","text":" and helpful","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" value","reasoning_details":[{"type":"reasoning.text","text":" value","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"? Yes","reasoning_details":[{"type":"reasoning.text","text":"? Yes","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" beyond","reasoning_details":[{"type":"reasoning.text","text":" beyond","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":", this","reasoning_details":[{"type":"reasoning.text","text":", this","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" looks good","reasoning_details":[{"type":"reasoning.text","text":" looks good","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simple","reasoning_details":[{"type":"reasoning.text","text":" simple","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":". It","reasoning_details":[{"type":"reasoning.text","text":". It","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" dictionary","reasoning_details":[{"type":"reasoning.text","text":" dictionary","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s comprehensive","reasoning_details":[{"type":"reasoning.text","text":"'s comprehensive","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" translation","reasoning_details":[{"type":"reasoning.text","text":" translation","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but starts","reasoning_details":[{"type":"reasoning.text","text":" but starts","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with the","reasoning_details":[{"type":"reasoning.text","text":" with the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simplest,","reasoning_details":[{"type":"reasoning.text","text":" simplest,","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"E","reasoning_details":[{"type":"reasoning.text","text":"E","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" most direct","reasoning_details":[{"type":"reasoning.text","text":" most direct","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" answer.","reasoning_details":[{"type":"reasoning.text","text":" answer.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"í","reasoning_details":[{"type":"reasoning.text","text":"í","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?\"","reasoning_details":[{"type":"reasoning.text","text":"?\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"Oi!\n\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" (","reasoning_details":[{"type":"reasoning.text","text":" (","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"That's","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Brazil","reasoning_details":[{"type":"reasoning.text","text":"Brazil","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" the most","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":")","reasoning_details":[{"type":"reasoning.text","text":")","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" common and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" informal way","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" to say","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" great","reasoning_details":[{"type":"reasoning.text","text":" great","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"hi","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" example","reasoning_details":[{"type":"reasoning.text","text":" example","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"\" in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" Portuguese,","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Expl","reasoning_details":[{"type":"reasoning.text","text":" Expl","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" especially in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"aining","reasoning_details":[{"type":"reasoning.text","text":"aining","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" Brazil.\n\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" its","reasoning_details":[{"type":"reasoning.text","text":" its","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"Here","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" meaning","reasoning_details":[{"type":"reasoning.text","text":" meaning","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" are a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" (\"","reasoning_details":[{"type":"reasoning.text","text":" (\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" few other","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"What","reasoning_details":[{"type":"reasoning.text","text":"What","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" options,","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" from","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" up","reasoning_details":[{"type":"reasoning.text","text":" up","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" most to","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?","reasoning_details":[{"type":"reasoning.text","text":"?","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" least formal","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\")","reasoning_details":[{"type":"reasoning.text","text":"\")","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n\n*","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"   **","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" crucial","reasoning_details":[{"type":"reasoning.text","text":" crucial","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n","reasoning_details":[{"type":"reasoning.text","text":".\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"** (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"oh-L","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"AH)","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" - This","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **","reasoning_details":[{"type":"reasoning.text","text":" **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" is the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Include","reasoning_details":[{"type":"reasoning.text","text":"Include","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" standard","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"hello","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" time","reasoning_details":[{"type":"reasoning.text","text":" time","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"\"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-of","reasoning_details":[{"type":"reasoning.text","text":"-of","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" and is","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-day","reasoning_details":[{"type":"reasoning.text","text":"-day","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" universally understood","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greetings","reasoning_details":[{"type":"reasoning.text","text":" greetings","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":". It","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"'s a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**","reasoning_details":[{"type":"reasoning.text","text":"**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" safe","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"B","reasoning_details":[{"type":"reasoning.text","text":"B","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" polite","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"om","reasoning_details":[{"type":"reasoning.text","text":"om","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" choice for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" dia","reasoning_details":[{"type":"reasoning.text","text":" dia","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" any situation","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",\"","reasoning_details":[{"type":"reasoning.text","text":",\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":".\n*","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"   **","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Bo","reasoning_details":[{"type":"reasoning.text","text":"Bo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"E a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"a","reasoning_details":[{"type":"reasoning.text","text":"a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"í?","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tarde","reasoning_details":[{"type":"reasoning.text","text":" tarde","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"** (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",\"","reasoning_details":[{"type":"reasoning.text","text":",\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"eh ah","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"-EE","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Bo","reasoning_details":[{"type":"reasoning.text","text":"Bo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":") -","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"a","reasoning_details":[{"type":"reasoning.text","text":"a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" This is","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" noite","reasoning_details":[{"type":"reasoning.text","text":" noite","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" a very","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" informal","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" are","reasoning_details":[{"type":"reasoning.text","text":" are","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"What","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" essential","reasoning_details":[{"type":"reasoning.text","text":" essential","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"'s up?\"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greetings","reasoning_details":[{"type":"reasoning.text","text":" greetings","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" used","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" between","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese","reasoning_details":[{"type":"reasoning.text","text":" Portuguese","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" friends.\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"*  ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.text","text":" should","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" **T","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be","reasoning_details":[{"type":"reasoning.text","text":" be","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"udo bem?","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" included","reasoning_details":[{"type":"reasoning.text","text":" included","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"** (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"TOO","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" completeness","reasoning_details":[{"type":"reasoning.text","text":" completeness","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"-doo","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" beng)","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Brief","reasoning_details":[{"type":"reasoning.text","text":" Brief","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" - Liter","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ly","reasoning_details":[{"type":"reasoning.text","text":"ly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"ally \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" explaining","reasoning_details":[{"type":"reasoning.text","text":" explaining","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"All good","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" what","reasoning_details":[{"type":"reasoning.text","text":" what","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"?\", but","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" each","reasoning_details":[{"type":"reasoning.text","text":" each","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" it's","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" means","reasoning_details":[{"type":"reasoning.text","text":" means","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" used just","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" like \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" necessary","reasoning_details":[{"type":"reasoning.text","text":" necessary","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"How are","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n","reasoning_details":[{"type":"reasoning.text","text":".\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" you?\" as","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" a common","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" greeting.\n\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"You can","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **","reasoning_details":[{"type":"reasoning.text","text":" **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" also use","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Sum","reasoning_details":[{"type":"reasoning.text","text":"Sum","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" time","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"mar","reasoning_details":[{"type":"reasoning.text","text":"mar","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"-of-day","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ize","reasoning_details":[{"type":"reasoning.text","text":"ize","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" greetings:\n\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"*  ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" organize","reasoning_details":[{"type":"reasoning.text","text":" organize","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" **B","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"om dia**","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**","reasoning_details":[{"type":"reasoning.text","text":"**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" (bo","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Use","reasoning_details":[{"type":"reasoning.text","text":" Use","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"hn DE","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" formatting","reasoning_details":[{"type":"reasoning.text","text":" formatting","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"E-","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" like","reasoning_details":[{"type":"reasoning.text","text":" like","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"ah) -","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" bullet","reasoning_details":[{"type":"reasoning.text","text":" bullet","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" Good morning","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" points","reasoning_details":[{"type":"reasoning.text","text":" points","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n*","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.text","text":" or","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"   **","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" bold","reasoning_details":[{"type":"reasoning.text","text":" bold","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"Boa tarde","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" text","reasoning_details":[{"type":"reasoning.text","text":" text","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"** (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"boh","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" make","reasoning_details":[{"type":"reasoning.text","text":" make","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"-ah","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" TAR-d","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" different","reasoning_details":[{"type":"reasoning.text","text":" different","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"jee)","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" options","reasoning_details":[{"type":"reasoning.text","text":" options","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" - Good","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clear","reasoning_details":[{"type":"reasoning.text","text":" clear","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" afternoon\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"*  ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" easy","reasoning_details":[{"type":"reasoning.text","text":" easy","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" **Bo","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"a noite","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" read","reasoning_details":[{"type":"reasoning.text","text":" read","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"** (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"boh","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" A","reasoning_details":[{"type":"reasoning.text","text":" A","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"-ah","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simple","reasoning_details":[{"type":"reasoning.text","text":" simple","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" NOY","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" summary","reasoning_details":[{"type":"reasoning.text","text":" summary","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"-tche","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" at","reasoning_details":[{"type":"reasoning.text","text":" at","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"e)","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" - Good","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" end","reasoning_details":[{"type":"reasoning.text","text":" end","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" evening /","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can","reasoning_details":[{"type":"reasoning.text","text":" can","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" Good night","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" reinforce","reasoning_details":[{"type":"reasoning.text","text":" reinforce","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n\nFor","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" a simple","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" main","reasoning_details":[{"type":"reasoning.text","text":" main","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" points","reasoning_details":[{"type":"reasoning.text","text":" points","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" friendly \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"hi,\"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" For","reasoning_details":[{"type":"reasoning.text","text":" For","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" just","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" example","reasoning_details":[{"type":"reasoning.text","text":" example","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" go","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.text","text":":","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":" with **","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"Oi","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"For","reasoning_details":[{"type":"reasoning.text","text":"For","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"!**","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
 
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simple","reasoning_details":[{"type":"reasoning.text","text":" simple","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" '","reasoning_details":[{"type":"reasoning.text","text":" '","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi","reasoning_details":[{"type":"reasoning.text","text":"hi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"',","reasoning_details":[{"type":"reasoning.text","text":"',","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.text","text":" use","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" '","reasoning_details":[{"type":"reasoning.text","text":" '","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.text","text":"Oi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'.","reasoning_details":[{"type":"reasoning.text","text":"'.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" For","reasoning_details":[{"type":"reasoning.text","text":" For","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" slightly","reasoning_details":[{"type":"reasoning.text","text":" slightly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more","reasoning_details":[{"type":"reasoning.text","text":" more","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" formal","reasoning_details":[{"type":"reasoning.text","text":" formal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" '","reasoning_details":[{"type":"reasoning.text","text":" '","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hello","reasoning_details":[{"type":"reasoning.text","text":"hello","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"',","reasoning_details":[{"type":"reasoning.text","text":"',","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.text","text":" use","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" '","reasoning_details":[{"type":"reasoning.text","text":" '","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Ol","reasoning_details":[{"type":"reasoning.text","text":"Ol","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"á","reasoning_details":[{"type":"reasoning.text","text":"á","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'","reasoning_details":[{"type":"reasoning.text","text":"'","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\"\n\n","reasoning_details":[{"type":"reasoning.text","text":".\"\n\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"5","reasoning_details":[{"type":"reasoning.text","text":"5","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **","reasoning_details":[{"type":"reasoning.text","text":" **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Draft","reasoning_details":[{"type":"reasoning.text","text":"Draft","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" response","reasoning_details":[{"type":"reasoning.text","text":" response","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" (","reasoning_details":[{"type":"reasoning.text","text":" (","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"internal","reasoning_details":[{"type":"reasoning.text","text":"internal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" mon","reasoning_details":[{"type":"reasoning.text","text":" mon","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ologue","reasoning_details":[{"type":"reasoning.text","text":"ologue","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"):","reasoning_details":[{"type":"reasoning.text","text":"):","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n","reasoning_details":[{"type":"reasoning.text","text":"**\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Okay","reasoning_details":[{"type":"reasoning.text","text":" Okay","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" start","reasoning_details":[{"type":"reasoning.text","text":" start","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.text","text":" with","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.text","text":"Oi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\"","reasoning_details":[{"type":"reasoning.text","text":".\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'ll","reasoning_details":[{"type":"reasoning.text","text":"'ll","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" say","reasoning_details":[{"type":"reasoning.text","text":" say","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.text","text":" it","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" most","reasoning_details":[{"type":"reasoning.text","text":" most","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" common","reasoning_details":[{"type":"reasoning.text","text":" common","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" informal","reasoning_details":[{"type":"reasoning.text","text":" informal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" way","reasoning_details":[{"type":"reasoning.text","text":" way","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" like","reasoning_details":[{"type":"reasoning.text","text":" like","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi","reasoning_details":[{"type":"reasoning.text","text":"hi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" or","reasoning_details":[{"type":"reasoning.text","text":" or","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hey","reasoning_details":[{"type":"reasoning.text","text":"hey","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\"\n","reasoning_details":[{"type":"reasoning.text","text":".\"\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Then","reasoning_details":[{"type":"reasoning.text","text":" Then","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Ol","reasoning_details":[{"type":"reasoning.text","text":"Ol","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"á","reasoning_details":[{"type":"reasoning.text","text":"á","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\"","reasoning_details":[{"type":"reasoning.text","text":".\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'ll","reasoning_details":[{"type":"reasoning.text","text":"'ll","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" explain","reasoning_details":[{"type":"reasoning.text","text":" explain","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.text","text":" it","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" like","reasoning_details":[{"type":"reasoning.text","text":" like","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hello","reasoning_details":[{"type":"reasoning.text","text":"hello","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can","reasoning_details":[{"type":"reasoning.text","text":" can","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be","reasoning_details":[{"type":"reasoning.text","text":" be","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" used","reasoning_details":[{"type":"reasoning.text","text":" used","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" any","reasoning_details":[{"type":"reasoning.text","text":" any","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" situation","reasoning_details":[{"type":"reasoning.text","text":" situation","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n","reasoning_details":[{"type":"reasoning.text","text":".\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.text","text":" should","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" mention","reasoning_details":[{"type":"reasoning.text","text":" mention","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" difference","reasoning_details":[{"type":"reasoning.text","text":" difference","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" between","reasoning_details":[{"type":"reasoning.text","text":" between","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Brazilian","reasoning_details":[{"type":"reasoning.text","text":" Brazilian","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" European","reasoning_details":[{"type":"reasoning.text","text":" European","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese","reasoning_details":[{"type":"reasoning.text","text":" Portuguese","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" if","reasoning_details":[{"type":"reasoning.text","text":" if","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" there","reasoning_details":[{"type":"reasoning.text","text":" there","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" notable","reasoning_details":[{"type":"reasoning.text","text":" notable","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" one","reasoning_details":[{"type":"reasoning.text","text":" one","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" these","reasoning_details":[{"type":"reasoning.text","text":" these","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greetings","reasoning_details":[{"type":"reasoning.text","text":" greetings","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.text","text":"Oi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" universally","reasoning_details":[{"type":"reasoning.text","text":" universally","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" understood","reasoning_details":[{"type":"reasoning.text","text":" understood","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but","reasoning_details":[{"type":"reasoning.text","text":" but","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" particularly","reasoning_details":[{"type":"reasoning.text","text":" particularly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" common","reasoning_details":[{"type":"reasoning.text","text":" common","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Brazil","reasoning_details":[{"type":"reasoning.text","text":" Brazil","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Ol","reasoning_details":[{"type":"reasoning.text","text":"Ol","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"á","reasoning_details":[{"type":"reasoning.text","text":"á","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" safe","reasoning_details":[{"type":"reasoning.text","text":" safe","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" everywhere","reasoning_details":[{"type":"reasoning.text","text":" everywhere","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" That","reasoning_details":[{"type":"reasoning.text","text":" That","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" good","reasoning_details":[{"type":"reasoning.text","text":" good","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" point","reasoning_details":[{"type":"reasoning.text","text":" point","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" make","reasoning_details":[{"type":"reasoning.text","text":" make","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n","reasoning_details":[{"type":"reasoning.text","text":".\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Let","reasoning_details":[{"type":"reasoning.text","text":" Let","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" add","reasoning_details":[{"type":"reasoning.text","text":" add","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" some","reasoning_details":[{"type":"reasoning.text","text":" some","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more","reasoning_details":[{"type":"reasoning.text","text":" more","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" convers","reasoning_details":[{"type":"reasoning.text","text":" convers","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ational","reasoning_details":[{"type":"reasoning.text","text":"ational","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ones","reasoning_details":[{"type":"reasoning.text","text":" ones","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"E","reasoning_details":[{"type":"reasoning.text","text":"E","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"í","reasoning_details":[{"type":"reasoning.text","text":"í","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?\"","reasoning_details":[{"type":"reasoning.text","text":"?\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" perfect","reasoning_details":[{"type":"reasoning.text","text":" perfect","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Brazil","reasoning_details":[{"type":"reasoning.text","text":" Brazil","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'ll","reasoning_details":[{"type":"reasoning.text","text":"'ll","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" translate","reasoning_details":[{"type":"reasoning.text","text":" translate","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.text","text":" it","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.text","text":" as","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"What","reasoning_details":[{"type":"reasoning.text","text":"What","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" up","reasoning_details":[{"type":"reasoning.text","text":" up","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?\"","reasoning_details":[{"type":"reasoning.text","text":"?\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n","reasoning_details":[{"type":"reasoning.text","text":".\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" And","reasoning_details":[{"type":"reasoning.text","text":" And","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can","reasoning_details":[{"type":"reasoning.text","text":" can","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'t","reasoning_details":[{"type":"reasoning.text","text":"'t","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" forget","reasoning_details":[{"type":"reasoning.text","text":" forget","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" time","reasoning_details":[{"type":"reasoning.text","text":" time","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-of","reasoning_details":[{"type":"reasoning.text","text":"-of","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-day","reasoning_details":[{"type":"reasoning.text","text":"-day","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greetings","reasoning_details":[{"type":"reasoning.text","text":" greetings","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Bom","reasoning_details":[{"type":"reasoning.text","text":" Bom","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" dia","reasoning_details":[{"type":"reasoning.text","text":" dia","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Bo","reasoning_details":[{"type":"reasoning.text","text":" Bo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"a","reasoning_details":[{"type":"reasoning.text","text":"a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tarde","reasoning_details":[{"type":"reasoning.text","text":" tarde","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Bo","reasoning_details":[{"type":"reasoning.text","text":" Bo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"a","reasoning_details":[{"type":"reasoning.text","text":"a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" noite","reasoning_details":[{"type":"reasoning.text","text":" noite","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'ll","reasoning_details":[{"type":"reasoning.text","text":"'ll","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" list","reasoning_details":[{"type":"reasoning.text","text":" list","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" them","reasoning_details":[{"type":"reasoning.text","text":" them","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.text","text":" with","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" their","reasoning_details":[{"type":"reasoning.text","text":" their","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" English","reasoning_details":[{"type":"reasoning.text","text":" English","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" translations","reasoning_details":[{"type":"reasoning.text","text":" translations","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n","reasoning_details":[{"type":"reasoning.text","text":".\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'ll","reasoning_details":[{"type":"reasoning.text","text":"'ll","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" structure","reasoning_details":[{"type":"reasoning.text","text":" structure","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.text","text":" it","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clearly","reasoning_details":[{"type":"reasoning.text","text":" clearly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" A","reasoning_details":[{"type":"reasoning.text","text":" A","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" main","reasoning_details":[{"type":"reasoning.text","text":" main","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" answer","reasoning_details":[{"type":"reasoning.text","text":" answer","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" first","reasoning_details":[{"type":"reasoning.text","text":" first","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" then","reasoning_details":[{"type":"reasoning.text","text":" then","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" list","reasoning_details":[{"type":"reasoning.text","text":" list","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of","reasoning_details":[{"type":"reasoning.text","text":" of","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" other","reasoning_details":[{"type":"reasoning.text","text":" other","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" options","reasoning_details":[{"type":"reasoning.text","text":" options","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.text","text":" with","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" explanations","reasoning_details":[{"type":"reasoning.text","text":" explanations","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n","reasoning_details":[{"type":"reasoning.text","text":".\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" The","reasoning_details":[{"type":"reasoning.text","text":" The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" main","reasoning_details":[{"type":"reasoning.text","text":" main","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" answer","reasoning_details":[{"type":"reasoning.text","text":" answer","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.text","text":" should","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be","reasoning_details":[{"type":"reasoning.text","text":" be","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" direct","reasoning_details":[{"type":"reasoning.text","text":" direct","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" simple","reasoning_details":[{"type":"reasoning.text","text":" simple","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.text","text":"The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" most","reasoning_details":[{"type":"reasoning.text","text":" most","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" common","reasoning_details":[{"type":"reasoning.text","text":" common","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" way","reasoning_details":[{"type":"reasoning.text","text":" way","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" say","reasoning_details":[{"type":"reasoning.text","text":" say","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" '","reasoning_details":[{"type":"reasoning.text","text":" '","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"hi","reasoning_details":[{"type":"reasoning.text","text":"hi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'","reasoning_details":[{"type":"reasoning.text","text":"'","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese","reasoning_details":[{"type":"reasoning.text","text":" Portuguese","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.text","text":":","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **","reasoning_details":[{"type":"reasoning.text","text":" **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.text","text":"Oi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**","reasoning_details":[{"type":"reasoning.text","text":"**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"\n","reasoning_details":[{"type":"reasoning.text","text":"\"\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Then","reasoning_details":[{"type":"reasoning.text","text":" Then","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can","reasoning_details":[{"type":"reasoning.text","text":" can","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" add","reasoning_details":[{"type":"reasoning.text","text":" add","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" section","reasoning_details":[{"type":"reasoning.text","text":" section","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Here","reasoning_details":[{"type":"reasoning.text","text":"Here","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" are","reasoning_details":[{"type":"reasoning.text","text":" are","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" few","reasoning_details":[{"type":"reasoning.text","text":" few","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" other","reasoning_details":[{"type":"reasoning.text","text":" other","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" options","reasoning_details":[{"type":"reasoning.text","text":" options","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" depending","reasoning_details":[{"type":"reasoning.text","text":" depending","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" on","reasoning_details":[{"type":"reasoning.text","text":" on","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" situation","reasoning_details":[{"type":"reasoning.text","text":" situation","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":\"\n","reasoning_details":[{"type":"reasoning.text","text":":\"\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'ll","reasoning_details":[{"type":"reasoning.text","text":"'ll","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.text","text":" use","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" bullet","reasoning_details":[{"type":"reasoning.text","text":" bullet","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" points","reasoning_details":[{"type":"reasoning.text","text":" points","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" list","reasoning_details":[{"type":"reasoning.text","text":" list","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":\n","reasoning_details":[{"type":"reasoning.text","text":":\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"       ","reasoning_details":[{"type":"reasoning.text","text":"       ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **","reasoning_details":[{"type":"reasoning.text","text":" **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Ol","reasoning_details":[{"type":"reasoning.text","text":"Ol","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"á","reasoning_details":[{"type":"reasoning.text","text":"á","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**","reasoning_details":[{"type":"reasoning.text","text":"**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" -","reasoning_details":[{"type":"reasoning.text","text":" -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Hello","reasoning_details":[{"type":"reasoning.text","text":" Hello","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" (","reasoning_details":[{"type":"reasoning.text","text":" (","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"a","reasoning_details":[{"type":"reasoning.text","text":"a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" bit","reasoning_details":[{"type":"reasoning.text","text":" bit","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" more","reasoning_details":[{"type":"reasoning.text","text":" more","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" formal","reasoning_details":[{"type":"reasoning.text","text":" formal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" than","reasoning_details":[{"type":"reasoning.text","text":" than","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Oi","reasoning_details":[{"type":"reasoning.text","text":"Oi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\")\n","reasoning_details":[{"type":"reasoning.text","text":"\")\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"       ","reasoning_details":[{"type":"reasoning.text","text":"       ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **","reasoning_details":[{"type":"reasoning.text","text":" **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"E","reasoning_details":[{"type":"reasoning.text","text":"E","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"í","reasoning_details":[{"type":"reasoning.text","text":"í","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?","reasoning_details":[{"type":"reasoning.text","text":"?","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**","reasoning_details":[{"type":"reasoning.text","text":"**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" (","reasoning_details":[{"type":"reasoning.text","text":" (","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Brazil","reasoning_details":[{"type":"reasoning.text","text":"Brazil","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":")","reasoning_details":[{"type":"reasoning.text","text":")","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" -","reasoning_details":[{"type":"reasoning.text","text":" -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" What","reasoning_details":[{"type":"reasoning.text","text":" What","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" up","reasoning_details":[{"type":"reasoning.text","text":" up","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?","reasoning_details":[{"type":"reasoning.text","text":"?","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" /","reasoning_details":[{"type":"reasoning.text","text":" /","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" How","reasoning_details":[{"type":"reasoning.text","text":" How","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.text","text":" it","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" going","reasoning_details":[{"type":"reasoning.text","text":" going","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?","reasoning_details":[{"type":"reasoning.text","text":"?","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" (","reasoning_details":[{"type":"reasoning.text","text":" (","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"very","reasoning_details":[{"type":"reasoning.text","text":"very","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" informal","reasoning_details":[{"type":"reasoning.text","text":" informal","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":")\n","reasoning_details":[{"type":"reasoning.text","text":")\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"       ","reasoning_details":[{"type":"reasoning.text","text":"       ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **","reasoning_details":[{"type":"reasoning.text","text":" **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"T","reasoning_details":[{"type":"reasoning.text","text":"T","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"udo","reasoning_details":[{"type":"reasoning.text","text":"udo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" bem","reasoning_details":[{"type":"reasoning.text","text":" bem","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?","reasoning_details":[{"type":"reasoning.text","text":"?","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**","reasoning_details":[{"type":"reasoning.text","text":"**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" -","reasoning_details":[{"type":"reasoning.text","text":" -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" How","reasoning_details":[{"type":"reasoning.text","text":" How","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" are","reasoning_details":[{"type":"reasoning.text","text":" are","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" you","reasoning_details":[{"type":"reasoning.text","text":" you","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?","reasoning_details":[{"type":"reasoning.text","text":"?","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" /","reasoning_details":[{"type":"reasoning.text","text":" /","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" All","reasoning_details":[{"type":"reasoning.text","text":" All","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" good","reasoning_details":[{"type":"reasoning.text","text":" good","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?","reasoning_details":[{"type":"reasoning.text","text":"?","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" (","reasoning_details":[{"type":"reasoning.text","text":" (","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"often","reasoning_details":[{"type":"reasoning.text","text":"often","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" used","reasoning_details":[{"type":"reasoning.text","text":" used","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.text","text":" as","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" greeting","reasoning_details":[{"type":"reasoning.text","text":" greeting","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":")\n","reasoning_details":[{"type":"reasoning.text","text":")\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"       ","reasoning_details":[{"type":"reasoning.text","text":"       ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **","reasoning_details":[{"type":"reasoning.text","text":" **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"B","reasoning_details":[{"type":"reasoning.text","text":"B","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"om","reasoning_details":[{"type":"reasoning.text","text":"om","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" dia","reasoning_details":[{"type":"reasoning.text","text":" dia","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**","reasoning_details":[{"type":"reasoning.text","text":"**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" -","reasoning_details":[{"type":"reasoning.text","text":" -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Good","reasoning_details":[{"type":"reasoning.text","text":" Good","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" morning","reasoning_details":[{"type":"reasoning.text","text":" morning","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n","reasoning_details":[{"type":"reasoning.text","text":"\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"       ","reasoning_details":[{"type":"reasoning.text","text":"       ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **","reasoning_details":[{"type":"reasoning.text","text":" **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Bo","reasoning_details":[{"type":"reasoning.text","text":"Bo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"a","reasoning_details":[{"type":"reasoning.text","text":"a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tarde","reasoning_details":[{"type":"reasoning.text","text":" tarde","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**","reasoning_details":[{"type":"reasoning.text","text":"**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" -","reasoning_details":[{"type":"reasoning.text","text":" -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Good","reasoning_details":[{"type":"reasoning.text","text":" Good","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" afternoon","reasoning_details":[{"type":"reasoning.text","text":" afternoon","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n","reasoning_details":[{"type":"reasoning.text","text":"\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"       ","reasoning_details":[{"type":"reasoning.text","text":"       ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **","reasoning_details":[{"type":"reasoning.text","text":" **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Bo","reasoning_details":[{"type":"reasoning.text","text":"Bo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"a","reasoning_details":[{"type":"reasoning.text","text":"a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" noite","reasoning_details":[{"type":"reasoning.text","text":" noite","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**","reasoning_details":[{"type":"reasoning.text","text":"**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" -","reasoning_details":[{"type":"reasoning.text","text":" -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Good","reasoning_details":[{"type":"reasoning.text","text":" Good","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" evening","reasoning_details":[{"type":"reasoning.text","text":" evening","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" /","reasoning_details":[{"type":"reasoning.text","text":" /","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Good","reasoning_details":[{"type":"reasoning.text","text":" Good","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" night","reasoning_details":[{"type":"reasoning.text","text":" night","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n","reasoning_details":[{"type":"reasoning.text","text":"\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"   ","reasoning_details":[{"type":"reasoning.text","text":"   ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" *","reasoning_details":[{"type":"reasoning.text","text":" *","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  ","reasoning_details":[{"type":"reasoning.text","text":"  ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" This","reasoning_details":[{"type":"reasoning.text","text":" This","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" looks","reasoning_details":[{"type":"reasoning.text","text":" looks","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" comprehensive","reasoning_details":[{"type":"reasoning.text","text":" comprehensive","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but","reasoning_details":[{"type":"reasoning.text","text":" but","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" not","reasoning_details":[{"type":"reasoning.text","text":" not","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" overwhelming","reasoning_details":[{"type":"reasoning.text","text":" overwhelming","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It","reasoning_details":[{"type":"reasoning.text","text":" It","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" gives","reasoning_details":[{"type":"reasoning.text","text":" gives","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" exactly","reasoning_details":[{"type":"reasoning.text","text":" exactly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" what","reasoning_details":[{"type":"reasoning.text","text":" what","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" they","reasoning_details":[{"type":"reasoning.text","text":" they","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asked","reasoning_details":[{"type":"reasoning.text","text":" asked","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" then","reasoning_details":[{"type":"reasoning.text","text":" then","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provides","reasoning_details":[{"type":"reasoning.text","text":" provides","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" extra","reasoning_details":[{"type":"reasoning.text","text":" extra","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" useful","reasoning_details":[{"type":"reasoning.text","text":" useful","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" context","reasoning_details":[{"type":"reasoning.text","text":" context","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" The","reasoning_details":[{"type":"reasoning.text","text":" The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tone","reasoning_details":[{"type":"reasoning.text","text":" tone","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.text","text":" should","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be","reasoning_details":[{"type":"reasoning.text","text":" be","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" friendly","reasoning_details":[{"type":"reasoning.text","text":" friendly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" helpful","reasoning_details":[{"type":"reasoning.text","text":" helpful","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n\n","reasoning_details":[{"type":"reasoning.text","text":".\n\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"6","reasoning_details":[{"type":"reasoning.text","text":"6","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" **","reasoning_details":[{"type":"reasoning.text","text":" **","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Final","reasoning_details":[{"type":"reasoning.text","text":"Final","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Polish","reasoning_details":[{"type":"reasoning.text","text":" Polish","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":**","reasoning_details":[{"type":"reasoning.text","text":":**","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Read","reasoning_details":[{"type":"reasoning.text","text":" Read","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" through","reasoning_details":[{"type":"reasoning.text","text":" through","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" drafted","reasoning_details":[{"type":"reasoning.text","text":" drafted","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" response","reasoning_details":[{"type":"reasoning.text","text":" response","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Is","reasoning_details":[{"type":"reasoning.text","text":" Is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.text","text":" it","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clear","reasoning_details":[{"type":"reasoning.text","text":" clear","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?","reasoning_details":[{"type":"reasoning.text","text":"?","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Is","reasoning_details":[{"type":"reasoning.text","text":" Is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.text","text":" it","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" accurate","reasoning_details":[{"type":"reasoning.text","text":" accurate","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?","reasoning_details":[{"type":"reasoning.text","text":"?","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Is","reasoning_details":[{"type":"reasoning.text","text":" Is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" formatting","reasoning_details":[{"type":"reasoning.text","text":" formatting","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" easy","reasoning_details":[{"type":"reasoning.text","text":" easy","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" follow","reasoning_details":[{"type":"reasoning.text","text":" follow","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?","reasoning_details":[{"type":"reasoning.text","text":"?","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" The","reasoning_details":[{"type":"reasoning.text","text":" The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" structure","reasoning_details":[{"type":"reasoning.text","text":" structure","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" looks","reasoning_details":[{"type":"reasoning.text","text":" looks","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" good","reasoning_details":[{"type":"reasoning.text","text":" good","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" The","reasoning_details":[{"type":"reasoning.text","text":" The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information","reasoning_details":[{"type":"reasoning.text","text":" information","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" correct","reasoning_details":[{"type":"reasoning.text","text":" correct","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" The","reasoning_details":[{"type":"reasoning.text","text":" The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tone","reasoning_details":[{"type":"reasoning.text","text":" tone","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" appropriate","reasoning_details":[{"type":"reasoning.text","text":" appropriate","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" It","reasoning_details":[{"type":"reasoning.text","text":" It","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ready","reasoning_details":[{"type":"reasoning.text","text":" ready","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" go","reasoning_details":[{"type":"reasoning.text","text":" go","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" most","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" common","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" direct","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" way","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" to","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" say","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"hi","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"\"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" Portuguese","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"Oi","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"!","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"**\n\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"This","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" informal","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" friendly","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" similar","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" to","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"Hi","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"\"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" or","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"Hey","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"\"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" English","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":".\n\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"Here","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" are","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" few","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" other","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" options","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" depending","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" on","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" situation","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"*","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"  ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" **","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"Ol","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"á","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" —","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" This","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" standard","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" slightly","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" more","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" formal","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" way","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" to","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" say","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"Hello","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":".\"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" It","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"'s","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" always","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" safe","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" polite","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" choice","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":".\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"*","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"  ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" **","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"E","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"í","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"?","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"P","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"ron","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"ounced","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":":","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" ee","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" ah","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"-","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"ee","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"?)","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" —","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" Very","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" common","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" Brazil","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" this","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" means","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"What","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"'s","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" up","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"?\"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" or","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"How","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"'s","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" it","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" going","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"?\"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"*","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"  ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" **","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"T","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"udo","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" bem","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"?","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" —","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" Liter","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"ally","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"Is","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" everything","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" well","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"?\"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" it","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"'s","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" used","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" as","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" greeting","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" like","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"How","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" are","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" you","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"?\"\n\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"You","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" can","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" also","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" use","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" greetings","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" based","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" on","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" time","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" of","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" day","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":":\n\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"*","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"  ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" **","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"B","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"om","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" dia","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" —","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" Good","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" morning","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"*","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"  ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" **","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"Bo","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" tarde","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" —","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" Good","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" afternoon","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"*","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"  ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" **","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"Bo","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"a","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" noite","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" —","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" Good","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" evening","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" /","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" Good","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":" night","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
-
-      data: {"id":"gen-1760945305-RthoNYDSR9jiFK5OAqD7","provider":"AtlasCloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945305,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":16,"completion_tokens":1344,"total_tokens":1360,"cost":0.0026976,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000096,"upstream_inference_completions_cost":0.002688},"completion_tokens_details":{"reasoning_tokens":1186,"image_tokens":0}}}
+      data: {"id":"gen-1761053335-cdlosZidwxAsuNA4lZIc","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053335,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":16,"completion_tokens":1261,"total_tokens":1277,"cost":0.0025316,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0000096,"upstream_inference_completions_cost":0.002522},"completion_tokens_details":{"reasoning_tokens":1031,"image_tokens":0}}}
 
       data: [DONE]
 

providertests/testdata/TestOpenRouterCommon/glm-4.6/tool_streaming.yaml 🔗

@@ -24,75 +24,79 @@ interactions:
     proto_minor: 0
     content_length: -1
     body: |+
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.text","text":"The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user is","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user is","reasoning_details":[{"type":"reasoning.text","text":" user is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asking for","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asking for","reasoning_details":[{"type":"reasoning.text","text":" asking for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather information","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather information","reasoning_details":[{"type":"reasoning.text","text":" weather information","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for Florence","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for Florence","reasoning_details":[{"type":"reasoning.text","text":" for Florence","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":", Italy","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":", Italy","reasoning_details":[{"type":"reasoning.text","text":", Italy","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":". I","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":". I","reasoning_details":[{"type":"reasoning.text","text":". I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" have access","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" have access","reasoning_details":[{"type":"reasoning.text","text":" have access","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to a","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to a","reasoning_details":[{"type":"reasoning.text","text":" to a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather function","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather function","reasoning_details":[{"type":"reasoning.text","text":" weather function","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that takes","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that takes","reasoning_details":[{"type":"reasoning.text","text":" that takes","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a location","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a location","reasoning_details":[{"type":"reasoning.text","text":" a location","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parameter.","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parameter.","reasoning_details":[{"type":"reasoning.text","text":" parameter.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" The user","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" The user","reasoning_details":[{"type":"reasoning.text","text":" The user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" has","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" specified \"","reasoning_details":[{"type":"reasoning.text","text":" specified \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provided \"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Florence","reasoning_details":[{"type":"reasoning.text","text":"Florence","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Florence","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":", Italy","reasoning_details":[{"type":"reasoning.text","text":", Italy","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",Italy","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\" which","reasoning_details":[{"type":"reasoning.text","text":"\" which","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\" as","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the location","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should use","reasoning_details":[{"type":"reasoning.text","text":" should use","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":". I","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as the","reasoning_details":[{"type":"reasoning.text","text":" as the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should use","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location parameter","reasoning_details":[{"type":"reasoning.text","text":" location parameter","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this exact","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" value","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"\nI","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for the","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"'ll check","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location parameter","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":" the weather","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"I","reasoning":"","reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence,","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":"'ll get","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":" the weather","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":" you.\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":" information for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_f52ecd5256ae42659dd74630","index":0,"type":"function","function":{"name":"weather","arguments":"{\"location\": \"Florence,Italy\"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence,","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
 
-      data: {"id":"gen-1760945351-xJhNNtzh9JJU5WLfinQq","provider":"GMICloud","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945351,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":178,"completion_tokens":75,"total_tokens":253,"cost":0.0002568,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0001068,"upstream_inference_completions_cost":0.00015},"completion_tokens_details":{"reasoning_tokens":54,"image_tokens":0}}}
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":" you.\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":null}
+
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"chatcmpl-tool-bcdb2f683eff40b2b75cf69a8d7af3f9","type":"function","function":{"name":"weather","arguments":"{\"location\": \"Florence,Italy\"}"}}]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":null}
+
+      data: {"id":"gen-1761053354-0U4NE69ev42zmjB8DnYp","provider":"BaseTen","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053354,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":187,"completion_tokens":82,"total_tokens":269,"cost":0.0002926,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.0001122,"upstream_inference_completions_cost":0.0001804},"completion_tokens_details":{"reasoning_tokens":62,"image_tokens":0}}}
 
       data: [DONE]
 
@@ -101,15 +105,15 @@ interactions:
       - text/event-stream
     status: 200 OK
     code: 200
-    duration: 1.028073917s
+    duration: 379.787791ms
 - id: 1
   request:
     proto: HTTP/1.1
     proto_major: 1
     proto_minor: 1
-    content_length: 854
+    content_length: 897
     host: ""
-    body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"\n\nI''ll check the weather in Florence, Italy for you.\n","tool_calls":[{"id":"call_f52ecd5256ae42659dd74630","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_f52ecd5256ae42659dd74630","role":"tool"}],"model":"z-ai/glm-4.6","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"usage":{"include":true},"stream":true}'
+    body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"\nI''ll get the weather information for Florence, Italy for you.\n","tool_calls":[{"id":"chatcmpl-tool-bcdb2f683eff40b2b75cf69a8d7af3f9","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"chatcmpl-tool-bcdb2f683eff40b2b75cf69a8d7af3f9","role":"tool"}],"model":"z-ai/glm-4.6","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"usage":{"include":true},"stream":true}'
     headers:
       Accept:
       - application/json
@@ -125,167 +129,167 @@ interactions:
     proto_minor: 0
     content_length: -1
     body: |+
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.text","text":"The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.text","text":"The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.text","text":" function","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.text","text":" function","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" returned","reasoning_details":[{"type":"reasoning.text","text":" returned","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" returned","reasoning_details":[{"type":"reasoning.text","text":" returned","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"40","reasoning_details":[{"type":"reasoning.text","text":"40","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" result","reasoning_details":[{"type":"reasoning.text","text":" result","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" C","reasoning_details":[{"type":"reasoning.text","text":" C","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" of","reasoning_details":[{"type":"reasoning.text","text":" of","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"40","reasoning_details":[{"type":"reasoning.text","text":"40","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.text","text":" Florence","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" C","reasoning_details":[{"type":"reasoning.text","text":" C","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.text","text":" Italy","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.text","text":" Florence","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" This","reasoning_details":[{"type":"reasoning.text","text":" This","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" indicates","reasoning_details":[{"type":"reasoning.text","text":" indicates","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.text","text":" Italy","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" current","reasoning_details":[{"type":"reasoning.text","text":" current","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" This","reasoning_details":[{"type":"reasoning.text","text":" This","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" temperature","reasoning_details":[{"type":"reasoning.text","text":" temperature","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" quite","reasoning_details":[{"type":"reasoning.text","text":" quite","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" hot","reasoning_details":[{"type":"reasoning.text","text":" hot","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"40","reasoning_details":[{"type":"reasoning.text","text":"40","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" -","reasoning_details":[{"type":"reasoning.text","text":" -","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" degrees","reasoning_details":[{"type":"reasoning.text","text":" degrees","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Celsius","reasoning_details":[{"type":"reasoning.text","text":" Celsius","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"40","reasoning_details":[{"type":"reasoning.text","text":"40","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" degrees","reasoning_details":[{"type":"reasoning.text","text":" degrees","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" which","reasoning_details":[{"type":"reasoning.text","text":" which","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Celsius","reasoning_details":[{"type":"reasoning.text","text":" Celsius","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" quite","reasoning_details":[{"type":"reasoning.text","text":" quite","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" hot","reasoning_details":[{"type":"reasoning.text","text":" hot","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.text","text":" should","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provide","reasoning_details":[{"type":"reasoning.text","text":" provide","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.text","text":" this","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.text","text":" should","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information","reasoning_details":[{"type":"reasoning.text","text":" information","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provide","reasoning_details":[{"type":"reasoning.text","text":" provide","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.text","text":" this","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information","reasoning_details":[{"type":"reasoning.text","text":" information","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clear","reasoning_details":[{"type":"reasoning.text","text":" clear","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" helpful","reasoning_details":[{"type":"reasoning.text","text":" helpful","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clear","reasoning_details":[{"type":"reasoning.text","text":" clear","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" way","reasoning_details":[{"type":"reasoning.text","text":" way","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" helpful","reasoning_details":[{"type":"reasoning.text","text":" helpful","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" way","reasoning_details":[{"type":"reasoning.text","text":" way","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" current","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" current","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"40","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"40","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"104","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"°C","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"°F","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":").","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"104","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" That","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"°F","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"'s","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":").","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" quite","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" That","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" hot","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"'s","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"!","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" quite","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" Make","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" hot","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" sure","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"!","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" to","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" Make","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" stay","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" sure","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" to","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" stay","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" seek","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" shade","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" if","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" seek","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" you","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" shade","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"'re","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" if","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" out","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" you","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"'re","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":" about","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":" outdoors","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":".","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":".","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
 
-      data: {"id":"gen-1760945354-FAmZYyPOusErHKyr4Uu2","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945364,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":219,"completion_tokens":82,"total_tokens":301,"cost":0.00029073,"is_byok":false,"prompt_tokens_details":{"cached_tokens":43,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00011033,"upstream_inference_completions_cost":0.0001804},"completion_tokens_details":{"reasoning_tokens":54,"image_tokens":0}}}
+      data: {"id":"gen-1761053355-0YaA5n5ayn7ILdkjK5hC","provider":"Mancer 2","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761053355,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":229,"completion_tokens":81,"total_tokens":310,"cost":0.0002875,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00012595,"upstream_inference_completions_cost":0.000162},"completion_tokens_details":{"reasoning_tokens":46,"image_tokens":0}}}
 
       data: [DONE]
 
@@ -294,4 +298,4 @@ interactions:
       - text/event-stream
     status: 200 OK
     code: 200
-    duration: 10.049007583s
+    duration: 394.828458ms

providertests/testdata/TestOpenRouterCommon/gpt-5/multi_tool.yaml 🔗

@@ -15,7 +15,7 @@ interactions:
       Content-Type:
       - application/json
       User-Agent:
-      - OpenAI/Go 2.3.0
+      - OpenAI/Go 2.7.1
     url: https://openrouter.ai/api/v1/chat/completions
     method: POST
   response:
@@ -24,28 +24,28 @@ interactions:
     proto_minor: 0
     content_length: -1
     uncompressed: true

providertests/testdata/TestOpenRouterCommon/gpt-5/multi_tool_streaming.yaml 🔗

@@ -15,7 +15,7 @@ interactions:
       Content-Type:
       - application/json
       User-Agent:
-      - OpenAI/Go 2.3.0
+      - OpenAI/Go 2.7.1
     url: https://openrouter.ai/api/v1/chat/completions
     method: POST
   response:
@@ -24,211 +24,45 @@ interactions:
     proto_minor: 0
     content_length: -1
     body: |+
-      data: {"id":"gen-1758885012-2qVPBxGHZxOgYWKthK4E","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885012,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054747-aRXhxlwVNm3mtTObq3p8","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054747,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885012-2qVPBxGHZxOgYWKthK4E","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885012,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Executing","reasoning_details":[{"type":"reasoning.summary","summary":"**Executing","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}

providertests/testdata/TestOpenRouterCommon/gpt-5/simple.yaml 🔗

@@ -15,7 +15,7 @@ interactions:
       Content-Type:
       - application/json
       User-Agent:
-      - OpenAI/Go 2.3.0
+      - OpenAI/Go 2.7.1
     url: https://openrouter.ai/api/v1/chat/completions
     method: POST
   response:
@@ -24,10 +24,10 @@ interactions:
     proto_minor: 0
     content_length: -1
     uncompressed: true

providertests/testdata/TestOpenRouterCommon/gpt-5/simple_streaming.yaml 🔗

@@ -15,7 +15,7 @@ interactions:
       Content-Type:
       - application/json
       User-Agent:
-      - OpenAI/Go 2.3.0
+      - OpenAI/Go 2.7.1
     url: https://openrouter.ai/api/v1/chat/completions
     method: POST
   response:
@@ -24,17 +24,199 @@ interactions:
     proto_minor: 0
     content_length: -1
     body: |+
-      data: {"id":"gen-1758884962-fX03Skb1GH0VQrIND1mJ","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884962,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054229-W3eLfNtiq5pKCuUI7w88","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054229,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 

providertests/testdata/TestOpenRouterCommon/gpt-5/tool.yaml 🔗

@@ -15,7 +15,7 @@ interactions:
       Content-Type:
       - application/json
       User-Agent:
-      - OpenAI/Go 2.3.0
+      - OpenAI/Go 2.7.1
     url: https://openrouter.ai/api/v1/chat/completions
     method: POST
   response:
@@ -24,28 +24,28 @@ interactions:
     proto_minor: 0
     content_length: -1
     uncompressed: true

providertests/testdata/TestOpenRouterCommon/gpt-5/tool_streaming.yaml 🔗

@@ -15,7 +15,7 @@ interactions:
       Content-Type:
       - application/json
       User-Agent:
-      - OpenAI/Go 2.3.0
+      - OpenAI/Go 2.7.1
     url: https://openrouter.ai/api/v1/chat/completions
     method: POST
   response:
@@ -24,213 +24,223 @@ interactions:
     proto_minor: 0
     content_length: -1
     body: |+
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Getting","reasoning_details":[{"type":"reasoning.summary","summary":"**Getting","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Getting","reasoning_details":[{"type":"reasoning.summary","summary":"**Getting","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information","reasoning_details":[{"type":"reasoning.summary","summary":" information","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" retrieve","reasoning_details":[{"type":"reasoning.summary","summary":" retrieve","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" respond","reasoning_details":[{"type":"reasoning.summary","summary":" respond","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information","reasoning_details":[{"type":"reasoning.summary","summary":" information","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" using","reasoning_details":[{"type":"reasoning.summary","summary":" using","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" info","reasoning_details":[{"type":"reasoning.summary","summary":" info","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" using","reasoning_details":[{"type":"reasoning.summary","summary":" using","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" There's","reasoning_details":[{"type":"reasoning.summary","summary":" There's","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" specific","reasoning_details":[{"type":"reasoning.summary","summary":" specific","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.summary","summary":" function","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.summary","summary":" this","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" don't","reasoning_details":[{"type":"reasoning.summary","summary":" don't","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".weather","reasoning_details":[{"type":"reasoning.summary","summary":".weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" category","reasoning_details":[{"type":"reasoning.summary","summary":" category","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multi","reasoning_details":[{"type":"reasoning.summary","summary":" multi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-tool","reasoning_details":[{"type":"reasoning.summary","summary":"-tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Since","reasoning_details":[{"type":"reasoning.summary","summary":" Since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" options","reasoning_details":[{"type":"reasoning.summary","summary":" options","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" since","reasoning_details":[{"type":"reasoning.summary","summary":" since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" only","reasoning_details":[{"type":"reasoning.summary","summary":" only","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" only","reasoning_details":[{"type":"reasoning.summary","summary":" only","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" one","reasoning_details":[{"type":"reasoning.summary","summary":" one","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" one","reasoning_details":[{"type":"reasoning.summary","summary":" one","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" which","reasoning_details":[{"type":"reasoning.summary","summary":" which","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" will","reasoning_details":[{"type":"reasoning.summary","summary":" will","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" won't","reasoning_details":[{"type":"reasoning.summary","summary":" won't","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be","reasoning_details":[{"type":"reasoning.summary","summary":" be","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".weather","reasoning_details":[{"type":"reasoning.summary","summary":".weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multi","reasoning_details":[{"type":"reasoning.summary","summary":" multi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"-tool","reasoning_details":[{"type":"reasoning.summary","summary":"-tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Once","reasoning_details":[{"type":"reasoning.summary","summary":" Once","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" approach","reasoning_details":[{"type":"reasoning.summary","summary":" approach","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" get","reasoning_details":[{"type":"reasoning.summary","summary":" get","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" specify","reasoning_details":[{"type":"reasoning.summary","summary":" specify","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" results","reasoning_details":[{"type":"reasoning.summary","summary":" results","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.summary","summary":" location","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.summary","summary":" as","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parse","reasoning_details":[{"type":"reasoning.summary","summary":" parse","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Flor","reasoning_details":[{"type":"reasoning.summary","summary":"Flor","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ence","reasoning_details":[{"type":"reasoning.summary","summary":"ence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" share","reasoning_details":[{"type":"reasoning.summary","summary":" share","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" key","reasoning_details":[{"type":"reasoning.summary","summary":" key","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.summary","summary":"\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" data","reasoning_details":[{"type":"reasoning.summary","summary":" data","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" back","reasoning_details":[{"type":"reasoning.summary","summary":" back","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" then","reasoning_details":[{"type":"reasoning.summary","summary":" then","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" handle","reasoning_details":[{"type":"reasoning.summary","summary":" handle","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" result","reasoning_details":[{"type":"reasoning.summary","summary":" result","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" also","reasoning_details":[{"type":"reasoning.summary","summary":" also","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" don't","reasoning_details":[{"type":"reasoning.summary","summary":" don't","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" want","reasoning_details":[{"type":"reasoning.summary","summary":" want","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" know","reasoning_details":[{"type":"reasoning.summary","summary":" know","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" exactly","reasoning_details":[{"type":"reasoning.summary","summary":" exactly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" confirm","reasoning_details":[{"type":"reasoning.summary","summary":" confirm","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" what","reasoning_details":[{"type":"reasoning.summary","summary":" what","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" will","reasoning_details":[{"type":"reasoning.summary","summary":" will","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" means","reasoning_details":[{"type":"reasoning.summary","summary":" means","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" return","reasoning_details":[{"type":"reasoning.summary","summary":" return","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but","reasoning_details":[{"type":"reasoning.summary","summary":" but","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" can","reasoning_details":[{"type":"reasoning.summary","summary":" can","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" not","reasoning_details":[{"type":"reasoning.summary","summary":" not","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" assume","reasoning_details":[{"type":"reasoning.summary","summary":" assume","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" will","reasoning_details":[{"type":"reasoning.summary","summary":" will","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" South","reasoning_details":[{"type":"reasoning.summary","summary":" South","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provide","reasoning_details":[{"type":"reasoning.summary","summary":" provide","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Carolina","reasoning_details":[{"type":"reasoning.summary","summary":" Carolina","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" some","reasoning_details":[{"type":"reasoning.summary","summary":" some","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" but","reasoning_details":[{"type":"reasoning.summary","summary":" but","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" details","reasoning_details":[{"type":"reasoning.summary","summary":" details","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" they","reasoning_details":[{"type":"reasoning.summary","summary":" they","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" specified","reasoning_details":[{"type":"reasoning.summary","summary":" specified","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" So","reasoning_details":[{"type":"reasoning.summary","summary":" So","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" So","reasoning_details":[{"type":"reasoning.summary","summary":" So","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" go","reasoning_details":[{"type":"reasoning.summary","summary":" go","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ahead","reasoning_details":[{"type":"reasoning.summary","summary":" ahead","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" move","reasoning_details":[{"type":"reasoning.summary","summary":" move","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ahead","reasoning_details":[{"type":"reasoning.summary","summary":" ahead","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" calling","reasoning_details":[{"type":"reasoning.summary","summary":" calling","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884989-jB8YOYIDcKtvkf291rxN","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758884989,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054243-GWvbh93pSOkiPd5iXJz7","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054243,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".weather","reasoning_details":[{"type":"reasoning.summary","summary":".weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 

providertests/testdata/TestOpenRouterCommon/grok-code-fast-1/multi_tool_streaming.yaml 🔗

@@ -15,7 +15,7 @@ interactions:
       Content-Type:
       - application/json
       User-Agent:
-      - OpenAI/Go 2.3.0
+      - OpenAI/Go 2.7.1
     url: https://openrouter.ai/api/v1/chat/completions
     method: POST
   response:
@@ -24,275 +24,75 @@ interactions:
     proto_minor: 0
     content_length: -1
     body: |+
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.text","text":"The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.summary","summary":"The","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asked","reasoning_details":[{"type":"reasoning.text","text":" asked","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asked","reasoning_details":[{"type":"reasoning.summary","summary":" asked","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Add","reasoning_details":[{"type":"reasoning.text","text":"Add","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" add","reasoning_details":[{"type":"reasoning.summary","summary":" add","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiply","reasoning_details":[{"type":"reasoning.text","text":" multiply","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiply","reasoning_details":[{"type":"reasoning.summary","summary":" multiply","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.summary","summary":" ","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" number","reasoning_details":[{"type":"reasoning.text","text":" number","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"2","reasoning_details":[{"type":"reasoning.summary","summary":"2","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"2","reasoning_details":[{"type":"reasoning.text","text":"2","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.summary","summary":" ","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"3","reasoning_details":[{"type":"reasoning.summary","summary":"3","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ","reasoning_details":[{"type":"reasoning.text","text":" ","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"3","reasoning_details":[{"type":"reasoning.text","text":"3","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\".","reasoning_details":[{"type":"reasoning.text","text":"\".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" have","reasoning_details":[{"type":"reasoning.text","text":" have","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tools","reasoning_details":[{"type":"reasoning.text","text":" tools","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" both","reasoning_details":[{"type":"reasoning.summary","summary":" both","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" add","reasoning_details":[{"type":"reasoning.summary","summary":" add","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" add","reasoning_details":[{"type":"reasoning.text","text":" add","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.text","text":" and","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiply","reasoning_details":[{"type":"reasoning.summary","summary":" multiply","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiply","reasoning_details":[{"type":"reasoning.text","text":" multiply","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tools","reasoning_details":[{"type":"reasoning.summary","summary":" tools","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n","reasoning_details":[{"type":"reasoning.text","text":".\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" at","reasoning_details":[{"type":"reasoning.summary","summary":" at","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" same","reasoning_details":[{"type":"reasoning.summary","summary":" same","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" time","reasoning_details":[{"type":"reasoning.summary","summary":" time","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n","reasoning_details":[{"type":"reasoning.summary","summary":".\n","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\n\n## Interpreting user request  \n- The user wants to add and multiply the numbers 2 and 3 using both operations.","reasoning_details":[{"type":"reasoning.summary","summary":"\n\n## Interpreting user request  \n- The user wants to add and multiply the numbers 2 and 3 using both operations.","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054146-TJznqBdTapU8K7vXSLVs","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054146,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"  \n- The task requires handling both addition and multiplication in a single response.","reasoning_details":[{"type":"reasoning.summary","summary":"  \n- The task requires handling both addition and multiplication in a single response.","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884860-K9868CVf6xsUcJcDbCmt","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884860,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}

providertests/testdata/TestOpenRouterCommon/grok-code-fast-1/simple_streaming.yaml 🔗

@@ -15,7 +15,7 @@ interactions:
       Content-Type:
       - application/json
       User-Agent:
-      - OpenAI/Go 2.3.0
+      - OpenAI/Go 2.7.1
     url: https://openrouter.ai/api/v1/chat/completions
     method: POST
   response:
@@ -23,226 +23,10 @@ interactions:
     proto_major: 2
     proto_minor: 0
     content_length: -1
-    body: |+
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"First","reasoning_details":[{"type":"reasoning.text","text":"First","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" said","reasoning_details":[{"type":"reasoning.text","text":" said","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.text","text":":","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Say","reasoning_details":[{"type":"reasoning.text","text":"Say","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" hi","reasoning_details":[{"type":"reasoning.text","text":" hi","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Portuguese","reasoning_details":[{"type":"reasoning.text","text":" Portuguese","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"\n","reasoning_details":[{"type":"reasoning.text","text":"\"\n","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"!","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
-
-      data: {"id":"gen-1758884847-WYJqlR3MNgz0b8uCnebl","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884847,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":213,"completion_tokens":105,"total_tokens":318,"cost":0.00016554,"is_byok":false,"prompt_tokens_details":{"cached_tokens":192,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00000804,"upstream_inference_completions_cost":0.0001575},"completion_tokens_details":{"reasoning_tokens":103,"image_tokens":0}}}
-
-      data: [DONE]
-

providertests/testdata/TestOpenRouterCommon/grok-code-fast-1/tool_streaming.yaml 🔗

@@ -15,7 +15,7 @@ interactions:
       Content-Type:
       - application/json
       User-Agent:
-      - OpenAI/Go 2.3.0
+      - OpenAI/Go 2.7.1
     url: https://openrouter.ai/api/v1/chat/completions
     method: POST
   response:
@@ -24,223 +24,41 @@ interactions:
     proto_minor: 0
     content_length: -1
     body: |+
-      data: {"id":"gen-1758884852-U5Y9O1d79zXJK5gXZWxP","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884852,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.text","text":"The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054137-Y2KVAJHkgtOf0Sk7OeiA","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054137,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884852-U5Y9O1d79zXJK5gXZWxP","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884852,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054137-Y2KVAJHkgtOf0Sk7OeiA","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054137,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.summary","summary":"The","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884852-U5Y9O1d79zXJK5gXZWxP","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884852,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asked","reasoning_details":[{"type":"reasoning.text","text":" asked","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054137-Y2KVAJHkgtOf0Sk7OeiA","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054137,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884852-U5Y9O1d79zXJK5gXZWxP","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884852,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" about","reasoning_details":[{"type":"reasoning.text","text":" about","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054137-Y2KVAJHkgtOf0Sk7OeiA","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054137,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asked","reasoning_details":[{"type":"reasoning.summary","summary":" asked","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884852-U5Y9O1d79zXJK5gXZWxP","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884852,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054137-Y2KVAJHkgtOf0Sk7OeiA","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054137,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":":","reasoning_details":[{"type":"reasoning.summary","summary":":","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884852-U5Y9O1d79zXJK5gXZWxP","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884852,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054137-Y2KVAJHkgtOf0Sk7OeiA","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054137,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884852-U5Y9O1d79zXJK5gXZWxP","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884852,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.text","text":" in","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054137-Y2KVAJHkgtOf0Sk7OeiA","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054137,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"What's","reasoning_details":[{"type":"reasoning.summary","summary":"What's","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884852-U5Y9O1d79zXJK5gXZWxP","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884852,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.text","text":" Florence","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054137-Y2KVAJHkgtOf0Sk7OeiA","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054137,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884852-U5Y9O1d79zXJK5gXZWxP","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884852,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054137-Y2KVAJHkgtOf0Sk7OeiA","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054137,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884852-U5Y9O1d79zXJK5gXZWxP","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884852,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.text","text":" Italy","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054137-Y2KVAJHkgtOf0Sk7OeiA","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054137,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884852-U5Y9O1d79zXJK5gXZWxP","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884852,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054137-Y2KVAJHkgtOf0Sk7OeiA","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054137,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884852-U5Y9O1d79zXJK5gXZWxP","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884852,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054137-Y2KVAJHkgtOf0Sk7OeiA","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054137,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884852-U5Y9O1d79zXJK5gXZWxP","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884852,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.text","text":" need","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054137-Y2KVAJHkgtOf0Sk7OeiA","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054137,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Italy","reasoning_details":[{"type":"reasoning.summary","summary":"Italy","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884852-U5Y9O1d79zXJK5gXZWxP","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884852,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}
+      data: {"id":"gen-1761054137-Y2KVAJHkgtOf0Sk7OeiA","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054137,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"?\"\n","reasoning_details":[{"type":"reasoning.summary","summary":"?\"\n","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758884852-U5Y9O1d79zXJK5gXZWxP","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1758884852,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.text","text":" use","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":"fp_10f00c862d"}

providertests/testdata/TestOpenRouterCommonWithAnthropicCache/claude-sonnet-4/multi_tool.yaml 🔗

@@ -0,0 +1,63 @@
+---
+version: 2
+interactions:
+- id: 0
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 929
+    host: ""
+    body: '{"messages":[{"content":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS.","role":"system","cache_control":{"type":"ephemeral"}},{"content":"Add and multiply the number 2 and 3","role":"user","cache_control":{"type":"ephemeral"}}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"usage":{"include":true}}'
+    headers:
+      Accept:
+      - application/json
+      Content-Type:
+      - application/json
+      User-Agent:
+      - OpenAI/Go 2.7.1
+    url: https://openrouter.ai/api/v1/chat/completions
+    method: POST
+  response:
+    proto: HTTP/2.0
+    proto_major: 2
+    proto_minor: 0
+    content_length: -1
+    uncompressed: true

providertests/testdata/TestOpenRouterCommonWithAnthropicCache/claude-sonnet-4/multi_tool_streaming.yaml 🔗

@@ -0,0 +1,133 @@
+---
+version: 2
+interactions:
+- id: 0
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 966
+    host: ""
+    body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system","cache_control":{"type":"ephemeral"}},{"content":"Add and multiply the number 2 and 3","role":"user","cache_control":{"type":"ephemeral"}}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"usage":{"include":true},"stream":true}'
+    headers:
+      Accept:
+      - application/json
+      Content-Type:
+      - application/json
+      User-Agent:
+      - OpenAI/Go 2.7.1
+    url: https://openrouter.ai/api/v1/chat/completions
+    method: POST
+  response:
+    proto: HTTP/2.0
+    proto_major: 2
+    proto_minor: 0
+    content_length: -1
+    body: |+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll add an","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":"d multiply the numbers 2 and 3 for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":" you.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_01AfGThX1SaZp17tWuEGFDQC","index":0,"type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"{\"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"\":"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":" 2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":", \"b\": "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_01NrRcq2dJXe1HWXoENTKXMD","index":1,"type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"{\"a"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"\": "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":"2"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":", \"b\""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":1,"type":"function","function":{"arguments":": 3}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
+
+      data: {"id":"gen-1761040275-09zqoLwdRF08XgqRqNQ4","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040275,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":502,"completion_tokens":137,"total_tokens":639,"cost":0.003561,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.001506,"upstream_inference_completions_cost":0.002055},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
+
+      data: [DONE]
+
+    headers:
+      Content-Type:
+      - text/event-stream
+    status: 200 OK
+    code: 200
+    duration: 1.266440542s
+- id: 1
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 1484
+    host: ""

providertests/testdata/TestOpenRouterCommonWithAnthropicCache/claude-sonnet-4/simple.yaml 🔗

@@ -0,0 +1,33 @@
+---
+version: 2
+interactions:
+- id: 0
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 274
+    host: ""
+    body: '{"messages":[{"content":"You are a helpful assistant","role":"system","cache_control":{"type":"ephemeral"}},{"content":"Say hi in Portuguese","role":"user","cache_control":{"type":"ephemeral"}}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"usage":{"include":true}}'
+    headers:
+      Accept:
+      - application/json
+      Content-Type:
+      - application/json
+      User-Agent:
+      - OpenAI/Go 2.7.1
+    url: https://openrouter.ai/api/v1/chat/completions
+    method: POST
+  response:
+    proto: HTTP/2.0
+    proto_major: 2
+    proto_minor: 0
+    content_length: -1
+    uncompressed: true
+    body: "\n         \n\n         \n\n         \n{\"id\":\"gen-1761040327-k9AqWBidca9ypY5fr23I\",\"provider\":\"Google\",\"model\":\"anthropic/claude-sonnet-4\",\"object\":\"chat.completion\",\"created\":1761040327,\"choices\":[{\"logprobs\":null,\"finish_reason\":\"stop\",\"native_finish_reason\":\"stop\",\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá! \\n\\n(That's \\\"hi\\\" in Portuguese!)\",\"refusal\":null,\"reasoning\":null}}],\"usage\":{\"prompt_tokens\":16,\"completion_tokens\":18,\"total_tokens\":34,\"cost\":0.000318,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0.000048,\"upstream_inference_completions_cost\":0.00027},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0}}}"
+    headers:
+      Content-Type:
+      - application/json
+    status: 200 OK
+    code: 200
+    duration: 1.178872834s

providertests/testdata/TestOpenRouterCommonWithAnthropicCache/claude-sonnet-4/simple_streaming.yaml 🔗

@@ -0,0 +1,54 @@
+---
+version: 2
+interactions:
+- id: 0
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 328
+    host: ""
+    body: '{"messages":[{"content":"You are a helpful assistant","role":"system","cache_control":{"type":"ephemeral"}},{"content":"Say hi in Portuguese","role":"user","cache_control":{"type":"ephemeral"}}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"stream_options":{"include_usage":true},"usage":{"include":true},"stream":true}'
+    headers:
+      Accept:
+      - application/json
+      Content-Type:
+      - application/json
+      User-Agent:
+      - OpenAI/Go 2.7.1
+    url: https://openrouter.ai/api/v1/chat/completions
+    method: POST
+  response:
+    proto: HTTP/2.0
+    proto_major: 2
+    proto_minor: 0
+    content_length: -1
+    body: |+
+      data: {"id":"gen-1761040328-vqC1YcRuKPi3xRLkXkbc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040328,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040328-vqC1YcRuKPi3xRLkXkbc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040328,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040328-vqC1YcRuKPi3xRLkXkbc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040328,"choices":[{"index":0,"delta":{"role":"assistant","content":"Olá! (","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040328-vqC1YcRuKPi3xRLkXkbc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040328,"choices":[{"index":0,"delta":{"role":"assistant","content":"Hello!)\n\nYou can also","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040328-vqC1YcRuKPi3xRLkXkbc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040328,"choices":[{"index":0,"delta":{"role":"assistant","content":" say \"Oi!\"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040328-vqC1YcRuKPi3xRLkXkbc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040328,"choices":[{"index":0,"delta":{"role":"assistant","content":" which is a more casual way to say hi","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040328-vqC1YcRuKPi3xRLkXkbc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040328,"choices":[{"index":0,"delta":{"role":"assistant","content":" in Portuguese.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040328-vqC1YcRuKPi3xRLkXkbc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040328,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040328-vqC1YcRuKPi3xRLkXkbc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040328,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
+
+      data: {"id":"gen-1761040328-vqC1YcRuKPi3xRLkXkbc","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040328,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":16,"completion_tokens":32,"total_tokens":48,"cost":0.000528,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.000048,"upstream_inference_completions_cost":0.00048},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
+
+      data: [DONE]
+
+    headers:
+      Content-Type:
+      - text/event-stream
+    status: 200 OK
+    code: 200
+    duration: 2.357996709s

providertests/testdata/TestOpenRouterCommonWithAnthropicCache/claude-sonnet-4/tool.yaml 🔗

@@ -0,0 +1,63 @@
+---
+version: 2
+interactions:
+- id: 0
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 566
+    host: ""
+    body: '{"messages":[{"content":"You are a helpful assistant","role":"system","cache_control":{"type":"ephemeral"}},{"content":"What''s the weather in Florence,Italy?","role":"user","cache_control":{"type":"ephemeral"}}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"usage":{"include":true}}'
+    headers:
+      Accept:
+      - application/json
+      Content-Type:
+      - application/json
+      User-Agent:
+      - OpenAI/Go 2.7.1
+    url: https://openrouter.ai/api/v1/chat/completions
+    method: POST
+  response:
+    proto: HTTP/2.0
+    proto_major: 2
+    proto_minor: 0
+    content_length: -1
+    uncompressed: true

providertests/testdata/TestOpenRouterCommonWithAnthropicCache/claude-sonnet-4/tool_streaming.yaml 🔗

@@ -0,0 +1,123 @@
+---
+version: 2
+interactions:
+- id: 0
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 620
+    host: ""
+    body: '{"messages":[{"content":"You are a helpful assistant","role":"system","cache_control":{"type":"ephemeral"}},{"content":"What''s the weather in Florence,Italy?","role":"user","cache_control":{"type":"ephemeral"}}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"usage":{"include":true},"stream":true}'
+    headers:
+      Accept:
+      - application/json
+      Content-Type:
+      - application/json
+      User-Agent:
+      - OpenAI/Go 2.7.1
+    url: https://openrouter.ai/api/v1/chat/completions
+    method: POST
+  response:
+    proto: HTTP/2.0
+    proto_major: 2
+    proto_minor: 0
+    content_length: -1
+    body: |+
+      data: {"id":"gen-1761040265-t01bhiOqW2wY3pKo18Xy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040265,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040265-t01bhiOqW2wY3pKo18Xy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040265,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040265-t01bhiOqW2wY3pKo18Xy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040265,"choices":[{"index":0,"delta":{"role":"assistant","content":"I'll get","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040265-t01bhiOqW2wY3pKo18Xy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040265,"choices":[{"index":0,"delta":{"role":"assistant","content":" the weather information for Florence, Italy for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040265-t01bhiOqW2wY3pKo18Xy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040265,"choices":[{"index":0,"delta":{"role":"assistant","content":" you.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040265-t01bhiOqW2wY3pKo18Xy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040265,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040265-t01bhiOqW2wY3pKo18Xy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040265,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_0158fGNhdp5B4wCThp4zjSD8","index":0,"type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040265-t01bhiOqW2wY3pKo18Xy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040265,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040265-t01bhiOqW2wY3pKo18Xy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040265,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"{\""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040265-t01bhiOqW2wY3pKo18Xy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040265,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"location\": "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040265-t01bhiOqW2wY3pKo18Xy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040265,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"\"Flore"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040265-t01bhiOqW2wY3pKo18Xy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040265,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"nce"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040265-t01bhiOqW2wY3pKo18Xy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040265,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":",Ital"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040265-t01bhiOqW2wY3pKo18Xy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040265,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"y\"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040265-t01bhiOqW2wY3pKo18Xy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040265,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040265-t01bhiOqW2wY3pKo18Xy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040265,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
+
+      data: {"id":"gen-1761040265-t01bhiOqW2wY3pKo18Xy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040265,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":394,"completion_tokens":67,"total_tokens":461,"cost":0.002187,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.001182,"upstream_inference_completions_cost":0.001005},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
+
+      data: [DONE]
+
+    headers:
+      Content-Type:
+      - text/event-stream
+    status: 200 OK
+    code: 200
+    duration: 3.163571709s
+- id: 1
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 958
+    host: ""
+    body: '{"messages":[{"content":"You are a helpful assistant","role":"system","cache_control":{"type":"ephemeral"}},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"I''ll get the weather information for Florence, Italy for you.","tool_calls":[{"id":"toolu_vrtx_0158fGNhdp5B4wCThp4zjSD8","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function","cache_control":{"type":"ephemeral"}}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_vrtx_0158fGNhdp5B4wCThp4zjSD8","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"usage":{"include":true},"stream":true}'
+    headers:
+      Accept:
+      - application/json
+      Content-Type:
+      - application/json
+      User-Agent:
+      - OpenAI/Go 2.7.1
+    url: https://openrouter.ai/api/v1/chat/completions
+    method: POST
+  response:
+    proto: HTTP/2.0
+    proto_major: 2
+    proto_minor: 0
+    content_length: -1
+    body: |+
+      data: {"id":"gen-1761040268-tegmh9zIGsP6DUfTBKIq","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040268,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040268-tegmh9zIGsP6DUfTBKIq","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040268,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040268-tegmh9zIGsP6DUfTBKIq","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040268,"choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040268-tegmh9zIGsP6DUfTBKIq","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040268,"choices":[{"index":0,"delta":{"role":"assistant","content":" current weather in Florence, Italy is ","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040268-tegmh9zIGsP6DUfTBKIq","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040268,"choices":[{"index":0,"delta":{"role":"assistant","content":"40°C (104°F).","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040268-tegmh9zIGsP6DUfTBKIq","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040268,"choices":[{"index":0,"delta":{"role":"assistant","content":" That's quite hot! If you're planning to visit or","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040268-tegmh9zIGsP6DUfTBKIq","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040268,"choices":[{"index":0,"delta":{"role":"assistant","content":" are currently there, make sure to","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040268-tegmh9zIGsP6DUfTBKIq","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040268,"choices":[{"index":0,"delta":{"role":"assistant","content":" stay hydrated and seek shade during the hottest parts of the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040268-tegmh9zIGsP6DUfTBKIq","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040268,"choices":[{"index":0,"delta":{"role":"assistant","content":" day.","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040268-tegmh9zIGsP6DUfTBKIq","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040268,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761040268-tegmh9zIGsP6DUfTBKIq","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040268,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"stop","native_finish_reason":"stop","logprobs":null}]}
+
+      data: {"id":"gen-1761040268-tegmh9zIGsP6DUfTBKIq","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761040268,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":476,"completion_tokens":54,"total_tokens":530,"cost":0.002238,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.001428,"upstream_inference_completions_cost":0.00081},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0}}}
+
+      data: [DONE]
+
+    headers:
+      Content-Type:
+      - text/event-stream
+    status: 200 OK
+    code: 200
+    duration: 1.179744666s

providertests/testdata/TestOpenRouterThinking/claude-sonnet-4-sig/thinking-streaming.yaml 🔗

@@ -8,14 +8,14 @@ interactions:
     proto_minor: 1
     content_length: 561
     host: ""
-    body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"anthropic/claude-sonnet-4","stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"usage":{"include":true},"reasoning":{"effort":"medium"},"stream":true}'
+    body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"anthropic/claude-sonnet-4","stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"reasoning":{"effort":"medium"},"usage":{"include":true},"stream":true}'
     headers:
       Accept:
       - application/json
       Content-Type:
       - application/json
       User-Agent:
-      - OpenAI/Go 2.3.0
+      - OpenAI/Go 2.7.1
     url: https://openrouter.ai/api/v1/chat/completions
     method: POST
   response:
@@ -24,59 +24,49 @@ interactions:
     proto_minor: 0
     content_length: -1
     body: |+
-      data: {"id":"gen-1758886222-GCs7FInUrjLNXlZuOEsF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758886222,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052928-cSHiiIJW2besxl4lmO80","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052928,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758886222-GCs7FInUrjLNXlZuOEsF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758886222,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.text","text":"","signature":"","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052928-cSHiiIJW2besxl4lmO80","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052928,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.text","text":"","signature":"","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758886222-GCs7FInUrjLNXlZuOEsF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758886222,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The user is asking for weather","reasoning_details":[{"type":"reasoning.text","text":"The user is asking for weather","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052928-cSHiiIJW2besxl4lmO80","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052928,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The user is asking for","reasoning_details":[{"type":"reasoning.text","text":"The user is asking for","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758886222-GCs7FInUrjLNXlZuOEsF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758886222,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information for Florence, Italy. I have","reasoning_details":[{"type":"reasoning.text","text":" information for Florence, Italy. I have","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052928-cSHiiIJW2besxl4lmO80","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052928,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather information for Florence, Italy. I have","reasoning_details":[{"type":"reasoning.text","text":" weather information for Florence, Italy. I have","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758886222-GCs7FInUrjLNXlZuOEsF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758886222,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" access","reasoning_details":[{"type":"reasoning.text","text":" access","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052928-cSHiiIJW2besxl4lmO80","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052928,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a weather function available that takes","reasoning_details":[{"type":"reasoning.text","text":" a weather function available that takes","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758886222-GCs7FInUrjLNXlZuOEsF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758886222,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to a","reasoning_details":[{"type":"reasoning.text","text":" to a","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052928-cSHiiIJW2besxl4lmO80","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052928,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a location parameter. The","reasoning_details":[{"type":"reasoning.text","text":" a location parameter. The","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758886222-GCs7FInUrjLNXlZuOEsF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758886222,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052928-cSHiiIJW2besxl4lmO80","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052928,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user has provided the specific","reasoning_details":[{"type":"reasoning.text","text":" user has provided the specific","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758886222-GCs7FInUrjLNXlZuOEsF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758886222,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.text","text":" function","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052928-cSHiiIJW2besxl4lmO80","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052928,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location \"Florence, Italy\" so","reasoning_details":[{"type":"reasoning.text","text":" location \"Florence, Italy\" so","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758886222-GCs7FInUrjLNXlZuOEsF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758886222,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that takes","reasoning_details":[{"type":"reasoning.text","text":" that takes","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052928-cSHiiIJW2besxl4lmO80","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052928,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I have all the required parameters to","reasoning_details":[{"type":"reasoning.text","text":" I have all the required parameters to","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758886222-GCs7FInUrjLNXlZuOEsF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758886222,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a location parameter. The location","reasoning_details":[{"type":"reasoning.text","text":" a location parameter. The location","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052928-cSHiiIJW2besxl4lmO80","provider":"Anthropic","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052928,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" make the function call.","reasoning_details":[{"type":"reasoning.text","text":" make the function call.","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758886222-GCs7FInUrjLNXlZuOEsF","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758886222,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}

providertests/testdata/TestOpenRouterThinking/claude-sonnet-4-sig/thinking.yaml 🔗

@@ -8,14 +8,14 @@ interactions:
     proto_minor: 1
     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":"anthropic/claude-sonnet-4","tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"reasoning":{"effort":"medium"},"usage":{"include":true}}'
+    body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"anthropic/claude-sonnet-4","tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"usage":{"include":true},"reasoning":{"effort":"medium"}}'
     headers:
       Accept:
       - application/json
       Content-Type:
       - application/json
       User-Agent:
-      - OpenAI/Go 2.3.0
+      - OpenAI/Go 2.7.1
     url: https://openrouter.ai/api/v1/chat/completions
     method: POST
   response:
@@ -24,28 +24,28 @@ interactions:
     proto_minor: 0
     content_length: -1
     uncompressed: true

providertests/testdata/TestOpenRouterThinking/claude-sonnet-4/thinking-streaming.yaml 🔗

@@ -15,7 +15,7 @@ interactions:
       Content-Type:
       - application/json
       User-Agent:
-      - OpenAI/Go 2.3.0
+      - OpenAI/Go 2.7.1
     url: https://openrouter.ai/api/v1/chat/completions
     method: POST
   response:
@@ -24,57 +24,59 @@ interactions:
     proto_minor: 0
     content_length: -1
     body: |+
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.text","text":"","signature":"","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.text","text":"","signature":"","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The user is asking for weather","reasoning_details":[{"type":"reasoning.text","text":"The user is asking for weather","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The user is asking for","reasoning_details":[{"type":"reasoning.text","text":"The user is asking for","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information for Florence, Italy. I have","reasoning_details":[{"type":"reasoning.text","text":" information for Florence, Italy. I have","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" access to a","reasoning_details":[{"type":"reasoning.text","text":" access to a","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information for Florence, Italy. I have","reasoning_details":[{"type":"reasoning.text","text":" information for Florence, Italy. I have","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather function that takes","reasoning_details":[{"type":"reasoning.text","text":" weather function that takes","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" access","reasoning_details":[{"type":"reasoning.text","text":" access","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a location parameter. The","reasoning_details":[{"type":"reasoning.text","text":" a location parameter. The","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to a","reasoning_details":[{"type":"reasoning.text","text":" to a","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user has","reasoning_details":[{"type":"reasoning.text","text":" user has","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provided the location as \"Florence, Italy","reasoning_details":[{"type":"reasoning.text","text":" provided the location as \"Florence, Italy","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.text","text":" function","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\". I have","reasoning_details":[{"type":"reasoning.text","text":"\". I have","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that takes","reasoning_details":[{"type":"reasoning.text","text":" that takes","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" all the required parameters to make this function call","reasoning_details":[{"type":"reasoning.text","text":" all the required parameters to make this function call","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a location parameter. The","reasoning_details":[{"type":"reasoning.text","text":" a location parameter. The","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.text","signature":"EqgDCkgICBACGAIqQBvYK+UwzOLw+Jn8uxD4xoXAM70ym9hFuly64akWaZWJmCZFKC5FUckRcFdakI9/WwJTg2/OdypSRSFtMKW4iDYSDO/nr2VAX0H38rwvVBoMGmA90GevrflKVI+2IjAaYbpmfuJrp4R5Ap+X2vce48qmvVIjm1tGm6N+6PLTaEGwm4VAA+tx3OoJRle2O2wqjQJzWKdpBUkeisbCajt+0xhXCAXefGEhPMouvrlwpE/5IVEbMX6+eC1EDF04jKtfzH9RYEuuTUSaBNLqwprkOlmx9Rd1UYKvGM0f19WF9+nb57CUpOem9Spk9271t8jW5ubFGwiBn4/DyLDOx4wVUCfftQ0DyOAa3NQW1/aovUNNi18jwCyKlNCpsH7bT11twILBRYd3ZUDFlpIonEIYtWxPBbO0KVmECdH8a9gXGPhd0tIJD527yrJi6C4BnloHR7xSZJd3oe03y2mN2UsgF6R+SWE23z3jN+4hPpdOoVX3Kp9D3h160pfDvHTB9FN+xCr8xNUaevSab5J3qHquEjBCQSSyzxrZZasXhD3TThgB","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" has","reasoning_details":[{"type":"reasoning.text","text":" has","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provided the location as \"Florence, Italy","reasoning_details":[{"type":"reasoning.text","text":" provided the location as \"Florence, Italy","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_01At9zaYnKY1m26hYkz63qwH","index":0,"type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\". I have","reasoning_details":[{"type":"reasoning.text","text":"\". I have","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" all the required parameters to make this function","reasoning_details":[{"type":"reasoning.text","text":" all the required parameters to make this function","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"{\"l"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call.","reasoning_details":[{"type":"reasoning.text","text":" call.","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"oc"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[{"type":"reasoning.text","signature":"EqgDCkgICBACGAIqQBvYK+UwzOLw+Jn8uxD4xoXAM70ym9hFuly64akWaZWJmCZFKC5FUckRcFdakI9/WwJTg2/OdypSRSFtMKW4iDYSDLfy1OwcX/ce7UF27BoMZSMVXAzI69NJbbpRIjAHt993gWGqLdpBx4VZpiE/KzXGuWCtwOhGqtZpDSoieeHCkybItGtT6z6iICSyEZcqjQLvPSxhozPhmWnYCYD9l276wOYIe4Ij/VDzNH/BO+/FQpmM9Z6WvveF5Gwii8lypjywLedePdHZIKhytZDhEDZsaPYbW8WKupYjh6//EfU1Lrf8A8qXs0A3vZxOWAD2y1BqTM6q2PZ1Qbi/W6rPsT6Xc3IQhArlRC402b5cJhrBADH10ZTntkgh7NeIbCl6mQ9qLN2WUltLmhP2zhzJ7eAEJRc5wk3gK3usZ5wfo5U6ZNoCxBOTUYkjYmasuOZGVugU6pBcEZiawvhThKuCuQ5tAR1Ac7n/5b0+lPZS6iYTyhrLL9ftNAAAhQfpmpjohh232Ub59UO7UnH7ydxDK3xLloVprJMwTwatMEl9uxgB","format":"anthropic-claude-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"ation"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"\": "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_vrtx_015KCHmsJaGhVoVK8owtCkHi","index":0,"type":"function","function":{"name":"weather","arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"\"Florence, "}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":""}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"It"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"{\"locat"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"aly\"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"ion\": \"Flore"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"type":"function","function":{"arguments":"nce, Italy\"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885067-Z9yGX7RRqfUmNTcUxT2X","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1758885067,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":423,"completion_tokens":111,"total_tokens":534,"cost":0.002934,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.001269,"upstream_inference_completions_cost":0.001665},"completion_tokens_details":{"reasoning_tokens":63,"image_tokens":0}}}
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
+
+      data: {"id":"gen-1761052874-j8EWFeK5gEAxzynOutxy","provider":"Google","model":"anthropic/claude-sonnet-4","object":"chat.completion.chunk","created":1761052874,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":423,"completion_tokens":111,"total_tokens":534,"cost":0.002934,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.001269,"upstream_inference_completions_cost":0.001665},"completion_tokens_details":{"reasoning_tokens":63,"image_tokens":0}}}
 
       data: [DONE]
 
@@ -83,22 +85,22 @@ interactions:
       - text/event-stream
     status: 200 OK
     code: 200
-    duration: 2.014668667s
+    duration: 1.593338833s
 - id: 1
   request:
     proto: HTTP/1.1
     proto_major: 1
     proto_minor: 1
-    content_length: 826
+    content_length: 2035
     host: ""
-    body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"toolu_vrtx_01At9zaYnKY1m26hYkz63qwH","function":{"arguments":"{\"location\": \"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_vrtx_01At9zaYnKY1m26hYkz63qwH","role":"tool"}],"model":"anthropic/claude-sonnet-4","stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"usage":{"include":true},"reasoning":{"effort":"medium"},"stream":true}'

providertests/testdata/TestOpenRouterThinking/glm-4.6/thinking-streaming.yaml 🔗

@@ -24,139 +24,141 @@ interactions:
     proto_minor: 0
     content_length: -1
     body: |+
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.text","text":"The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.text","text":"The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asking","reasoning_details":[{"type":"reasoning.text","text":" asking","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asking","reasoning_details":[{"type":"reasoning.text","text":" asking","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information","reasoning_details":[{"type":"reasoning.text","text":" information","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information","reasoning_details":[{"type":"reasoning.text","text":" information","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.text","text":" Florence","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.text","text":" Florence","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.text","text":" Italy","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.text","text":" Italy","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" have","reasoning_details":[{"type":"reasoning.text","text":" have","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" have","reasoning_details":[{"type":"reasoning.text","text":" have","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" access","reasoning_details":[{"type":"reasoning.text","text":" access","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" access","reasoning_details":[{"type":"reasoning.text","text":" access","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.text","text":" to","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.text","text":" function","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" function","reasoning_details":[{"type":"reasoning.text","text":" function","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.text","text":" that","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.text","text":" that","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" takes","reasoning_details":[{"type":"reasoning.text","text":" takes","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" takes","reasoning_details":[{"type":"reasoning.text","text":" takes","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.text","text":" location","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.text","text":" location","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parameter","reasoning_details":[{"type":"reasoning.text","text":" parameter","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parameter","reasoning_details":[{"type":"reasoning.text","text":" parameter","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" The","reasoning_details":[{"type":"reasoning.text","text":" The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" The","reasoning_details":[{"type":"reasoning.text","text":" The","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.text","text":" user","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" has","reasoning_details":[{"type":"reasoning.text","text":" has","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" has","reasoning_details":[{"type":"reasoning.text","text":" has","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provided","reasoning_details":[{"type":"reasoning.text","text":" provided","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provided","reasoning_details":[{"type":"reasoning.text","text":" provided","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.text","text":" \"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Flo","reasoning_details":[{"type":"reasoning.text","text":"Flo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Flo","reasoning_details":[{"type":"reasoning.text","text":"Flo","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"rence","reasoning_details":[{"type":"reasoning.text","text":"rence","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"rence","reasoning_details":[{"type":"reasoning.text","text":"rence","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.text","text":",","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.text","text":" Italy","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.text","text":" Italy","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.text","text":"\"","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.text","text":" as","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.text","text":" as","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.text","text":" location","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location.","reasoning_details":[{"type":"reasoning.text","text":" location.","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I should","reasoning_details":[{"type":"reasoning.text","text":" I should","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.text","text":" I","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.text","text":" use","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" should","reasoning_details":[{"type":"reasoning.text","text":" should","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.text","text":" this","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.text","text":" use","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" exactly","reasoning_details":[{"type":"reasoning.text","text":" exactly","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.text","text":" this","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" as","reasoning_details":[{"type":"reasoning.text","text":" as","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" exact","reasoning_details":[{"type":"reasoning.text","text":" exact","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" provided","reasoning_details":[{"type":"reasoning.text","text":" provided","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" value","reasoning_details":[{"type":"reasoning.text","text":" value","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" since","reasoning_details":[{"type":"reasoning.text","text":" since","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.text","text":" for","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.text","text":" it","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.text","text":" the","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"'s","reasoning_details":[{"type":"reasoning.text","text":"'s","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.text","text":" location","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" parameter","reasoning_details":[{"type":"reasoning.text","text":" parameter","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" specific","reasoning_details":[{"type":"reasoning.text","text":" specific","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.text","text":" location","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.text","text":".","format":"unknown","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"I","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"'ll","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"I","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":" check","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"'ll","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":" the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":" check","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":" the","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":" weather","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":" Florence","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":" for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":" Italy","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":" you","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":" for","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":".\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":" you","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"id":"call_e560a58eedb54b59834f438e","index":0,"type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":".\n","reasoning":null,"reasoning_details":[]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}]}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_410428ba131746b6ae7ff4bb","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"}}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"system_fingerprint":""}
 
-      data: {"id":"gen-1760945400-u009MGVOfoKzifYS88xb","provider":"Z.AI","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1760945400,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":179,"completion_tokens":82,"total_tokens":261,"cost":0.00026673,"is_byok":false,"prompt_tokens_details":{"cached_tokens":43,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00008633,"upstream_inference_completions_cost":0.0001804},"completion_tokens_details":{"reasoning_tokens":62,"image_tokens":0}}}
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":null,"reasoning_details":[]},"finish_reason":"tool_calls","native_finish_reason":"tool_calls","logprobs":null}],"system_fingerprint":""}
+
+      data: {"id":"gen-1761052915-2CCJv3whdOgelTcOt7hS","provider":"Novita","model":"z-ai/glm-4.6","object":"chat.completion.chunk","created":1761052915,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}],"usage":{"prompt_tokens":179,"completion_tokens":85,"total_tokens":264,"cost":0.00020718,"is_byok":false,"prompt_tokens_details":{"cached_tokens":178,"audio_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0.00002018,"upstream_inference_completions_cost":0.000187},"completion_tokens_details":{"reasoning_tokens":65,"image_tokens":0}}}
 
       data: [DONE]
 
@@ -165,15 +167,15 @@ interactions:
       - text/event-stream
     status: 200 OK
     code: 200
-    duration: 845.296917ms
+    duration: 1.059172958s
 - id: 1
   request:
     proto: HTTP/1.1
     proto_major: 1
     proto_minor: 1
-    content_length: 869
+    content_length: 1214
     host: ""
-    body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"content":"\n\nI''ll check the weather in Florence, Italy for you.\n","tool_calls":[{"id":"call_e560a58eedb54b59834f438e","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_e560a58eedb54b59834f438e","role":"tool"}],"model":"z-ai/glm-4.6","stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"reasoning":{"effort":"medium"},"usage":{"include":true},"stream":true}'

providertests/testdata/TestOpenRouterThinking/gpt-5/thinking-streaming.yaml 🔗

@@ -15,7 +15,7 @@ interactions:
       Content-Type:
       - application/json
       User-Agent:
-      - OpenAI/Go 2.3.0
+      - OpenAI/Go 2.7.1
     url: https://openrouter.ai/api/v1/chat/completions
     method: POST
   response:
@@ -24,223 +24,211 @@ interactions:
     proto_minor: 0
     content_length: -1
     body: |+
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Retr","reasoning_details":[{"type":"reasoning.summary","summary":"**Retr","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**Retr","reasoning_details":[{"type":"reasoning.summary","summary":"**Retr","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ieving","reasoning_details":[{"type":"reasoning.summary","summary":"ieving","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ieving","reasoning_details":[{"type":"reasoning.summary","summary":"ieving","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" data","reasoning_details":[{"type":"reasoning.summary","summary":" data","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" get","reasoning_details":[{"type":"reasoning.summary","summary":" get","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" respond","reasoning_details":[{"type":"reasoning.summary","summary":" respond","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information","reasoning_details":[{"type":"reasoning.summary","summary":" information","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" using","reasoning_details":[{"type":"reasoning.summary","summary":" using","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user's","reasoning_details":[{"type":"reasoning.summary","summary":" user's","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" question","reasoning_details":[{"type":"reasoning.summary","summary":" question","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".weather","reasoning_details":[{"type":"reasoning.summary","summary":".weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" about","reasoning_details":[{"type":"reasoning.summary","summary":" about","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" which","reasoning_details":[{"type":"reasoning.summary","summary":" which","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" requires","reasoning_details":[{"type":"reasoning.summary","summary":" requires","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.summary","summary":" location","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" string","reasoning_details":[{"type":"reasoning.summary","summary":" string","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" To","reasoning_details":[{"type":"reasoning.summary","summary":" To","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Since","reasoning_details":[{"type":"reasoning.summary","summary":" Since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" do","reasoning_details":[{"type":"reasoning.summary","summary":" do","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.summary","summary":" this","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" only","reasoning_details":[{"type":"reasoning.summary","summary":" only","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" one","reasoning_details":[{"type":"reasoning.summary","summary":" one","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" won't","reasoning_details":[{"type":"reasoning.summary","summary":" won't","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multi","reasoning_details":[{"type":"reasoning.summary","summary":" multi","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" get","reasoning_details":[{"type":"reasoning.summary","summary":" get","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"_tool","reasoning_details":[{"type":"reasoning.summary","summary":"_tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"_use","reasoning_details":[{"type":"reasoning.summary","summary":"_use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" information","reasoning_details":[{"type":"reasoning.summary","summary":" information","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" needed","reasoning_details":[{"type":"reasoning.summary","summary":" needed","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" So","reasoning_details":[{"type":"reasoning.summary","summary":" So","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Even","reasoning_details":[{"type":"reasoning.summary","summary":" Even","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" though","reasoning_details":[{"type":"reasoning.summary","summary":" though","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" developer","reasoning_details":[{"type":"reasoning.summary","summary":" developer","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tools","reasoning_details":[{"type":"reasoning.summary","summary":" tools","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".weather","reasoning_details":[{"type":"reasoning.summary","summary":".weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" allow","reasoning_details":[{"type":"reasoning.summary","summary":" allow","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" running","reasoning_details":[{"type":"reasoning.summary","summary":" running","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Flor","reasoning_details":[{"type":"reasoning.summary","summary":"Flor","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" multiple","reasoning_details":[{"type":"reasoning.summary","summary":" multiple","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ence","reasoning_details":[{"type":"reasoning.summary","summary":"ence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tools","reasoning_details":[{"type":"reasoning.summary","summary":" tools","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\"","reasoning_details":[{"type":"reasoning.summary","summary":".\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" just","reasoning_details":[{"type":"reasoning.summary","summary":" just","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" After","reasoning_details":[{"type":"reasoning.summary","summary":" After","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" one","reasoning_details":[{"type":"reasoning.summary","summary":" one","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" returns","reasoning_details":[{"type":"reasoning.summary","summary":" returns","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" this","reasoning_details":[{"type":"reasoning.summary","summary":" this","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" task","reasoning_details":[{"type":"reasoning.summary","summary":" task","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" data","reasoning_details":[{"type":"reasoning.summary","summary":" data","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" So","reasoning_details":[{"type":"reasoning.summary","summary":" So","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" present","reasoning_details":[{"type":"reasoning.summary","summary":" present","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"’ll","reasoning_details":[{"type":"reasoning.summary","summary":"’ll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".weather","reasoning_details":[{"type":"reasoning.summary","summary":".weather","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" However","reasoning_details":[{"type":"reasoning.summary","summary":" However","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.summary","summary":" location","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" since","reasoning_details":[{"type":"reasoning.summary","summary":" since","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"Flor","reasoning_details":[{"type":"reasoning.summary","summary":"Flor","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it's","reasoning_details":[{"type":"reasoning.summary","summary":" it's","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"ence","reasoning_details":[{"type":"reasoning.summary","summary":"ence","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" an","reasoning_details":[{"type":"reasoning.summary","summary":" an","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" API","reasoning_details":[{"type":"reasoning.summary","summary":" API","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" stub","reasoning_details":[{"type":"reasoning.summary","summary":" stub","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\"","reasoning_details":[{"type":"reasoning.summary","summary":".\"","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" After","reasoning_details":[{"type":"reasoning.summary","summary":" After","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" content","reasoning_details":[{"type":"reasoning.summary","summary":" content","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" might","reasoning_details":[{"type":"reasoning.summary","summary":" might","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" not","reasoning_details":[{"type":"reasoning.summary","summary":" not","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" check","reasoning_details":[{"type":"reasoning.summary","summary":" check","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" be","reasoning_details":[{"type":"reasoning.summary","summary":" be","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" clearly","reasoning_details":[{"type":"reasoning.summary","summary":" clearly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" response","reasoning_details":[{"type":"reasoning.summary","summary":" response","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" defined","reasoning_details":[{"type":"reasoning.summary","summary":" defined","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ensure","reasoning_details":[{"type":"reasoning.summary","summary":" ensure","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" ensure","reasoning_details":[{"type":"reasoning.summary","summary":" ensure","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" handle","reasoning_details":[{"type":"reasoning.summary","summary":" handle","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" properly","reasoning_details":[{"type":"reasoning.summary","summary":" properly","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" commentary","reasoning_details":[{"type":"reasoning.summary","summary":" commentary","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Let's","reasoning_details":[{"type":"reasoning.summary","summary":" Let's","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" channel","reasoning_details":[{"type":"reasoning.summary","summary":" channel","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" move","reasoning_details":[{"type":"reasoning.summary","summary":" move","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" forward","reasoning_details":[{"type":"reasoning.summary","summary":" forward","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+      data: {"id":"gen-1761054763-a10nm1pcIKLo1lEHAAjM","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1761054763,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
 
-      data: {"id":"gen-1758885087-EYdcapXqgW3ZFacZaz6L","provider":"OpenAI","model":"openai/gpt-5","object":"chat.completion.chunk","created":1758885087,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","format":"openai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}

providertests/testdata/TestOpenRouterThinking/gpt-5/thinking.yaml 🔗

@@ -15,7 +15,7 @@ interactions:
       Content-Type:
       - application/json
       User-Agent:
-      - OpenAI/Go 2.3.0
+      - OpenAI/Go 2.7.1
     url: https://openrouter.ai/api/v1/chat/completions
     method: POST
   response:
@@ -24,28 +24,28 @@ interactions:
     proto_minor: 0
     content_length: -1
     uncompressed: true

providertests/testdata/TestOpenRouterThinking/grok-code-fast-1/thinking-streaming.yaml 🔗

@@ -0,0 +1,249 @@
+---
+version: 2
+interactions:
+- id: 0
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 557
+    host: ""
+    body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"x-ai/grok-code-fast-1","stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"reasoning":{"effort":"medium"},"usage":{"include":true},"stream":true}'
+    headers:
+      Accept:
+      - application/json
+      Content-Type:
+      - application/json
+      User-Agent:
+      - OpenAI/Go 2.7.1
+    url: https://openrouter.ai/api/v1/chat/completions
+    method: POST
+  response:
+    proto: HTTP/2.0
+    proto_major: 2
+    proto_minor: 0
+    content_length: -1
+    body: |+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"The","reasoning_details":[{"type":"reasoning.summary","summary":"The","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" asked","reasoning_details":[{"type":"reasoning.summary","summary":" asked","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" in","reasoning_details":[{"type":"reasoning.summary","summary":" in","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" have","reasoning_details":[{"type":"reasoning.summary","summary":" have","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" called","reasoning_details":[{"type":"reasoning.summary","summary":" called","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"weather","reasoning_details":[{"type":"reasoning.summary","summary":"weather","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":"\"","reasoning_details":[{"type":"reasoning.summary","summary":"\"","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" takes","reasoning_details":[{"type":"reasoning.summary","summary":" takes","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":" location","reasoning_details":[{"type":"reasoning.summary","summary":" location","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+
+      data: {"id":"gen-1761054593-zsT87Ju3qHM6qnqwwu1k","provider":"xAI","model":"x-ai/grok-code-fast-1","object":"chat.completion.chunk","created":1761054593,"choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning":".\n","reasoning_details":[{"type":"reasoning.summary","summary":".\n","format":"xai-responses-v1","index":0}]},"finish_reason":null,"native_finish_reason":null,"logprobs":null}]}
+

providertests/testdata/TestOpenRouterThinking/grok-code-fast-1/thinking.yaml 🔗

@@ -0,0 +1,63 @@
+---
+version: 2
+interactions:
+- id: 0
+  request:
+    proto: HTTP/1.1
+    proto_major: 1
+    proto_minor: 1
+    content_length: 503
+    host: ""
+    body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"x-ai/grok-code-fast-1","tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"reasoning":{"effort":"medium"},"usage":{"include":true}}'
+    headers:
+      Accept:
+      - application/json
+      Content-Type:
+      - application/json
+      User-Agent:
+      - OpenAI/Go 2.7.1
+    url: https://openrouter.ai/api/v1/chat/completions
+    method: POST
+  response:
+    proto: HTTP/2.0
+    proto_major: 2
+    proto_minor: 0
+    content_length: -1
+    uncompressed: true