()
| 140 | } |
| 141 | |
| 142 | func (c *ChatCompletionsStreamResponse) GetFirstToolCall() *ToolCallResponse { |
| 143 | if c.IsToolCall() { |
| 144 | return &c.Choices[0].Delta.ToolCalls[0] |
| 145 | } |
| 146 | return nil |
| 147 | } |
| 148 | |
| 149 | func (c *ChatCompletionsStreamResponse) Copy() *ChatCompletionsStreamResponse { |
| 150 | choices := make([]ChatCompletionsStreamResponseChoice, len(c.Choices)) |
no test coverage detected