diff options
Diffstat (limited to 'models')
| -rw-r--r-- | models/models.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/models/models.go b/models/models.go index b089ecd..c5e9435 100644 --- a/models/models.go +++ b/models/models.go @@ -64,8 +64,9 @@ type LLMRespChunk struct { FinishReason string `json:"finish_reason"` Index int `json:"index"` Delta struct { - Content string `json:"content"` - ToolCalls []ToolDeltaResp `json:"tool_calls"` + Content string `json:"content"` + ReasoningContent string `json:"reasoning_content"` + ToolCalls []ToolDeltaResp `json:"tool_calls"` } `json:"delta"` } `json:"choices"` Created int `json:"created"` |
