| 58 | ToolCalls []toolCall `json:"tool_calls,omitempty"` |
| 59 | } |
| 60 | |
| 61 | type toolCall struct { |
| 62 | // Index keys which call a streaming delta belongs to. Fragments arrive |
| 63 | // across chunks; slot lookup MUST key on this, not on slice position. |
| 64 | Index int `json:"index,omitempty"` |
| 65 | ID string `json:"id,omitempty"` |
| 66 | Type string `json:"type,omitempty"` // always "function" |
| 67 | Function toolCallFunc `json:"function"` |
| 68 | } |
| 69 | |
| 70 | type toolCallFunc struct { |
nothing calls this directly
no outgoing calls
no test coverage detected