| 24 | Arguments map[string]any `json:"arguments"` |
| 25 | } |
| 26 | |
| 27 | type Message struct { |
| 28 | Role Role `json:"role"` |
| 29 | Content string `json:"content"` |
| 30 | ToolCalls []ToolCall `json:"tool_calls,omitempty"` |
| 31 | ToolCallID string `json:"tool_call_id,omitempty"` |
| 32 | ToolName string `json:"name,omitempty"` |
| 33 | } |
| 34 | |
| 35 | // Tokens approximates token count as char/4, good enough for budgeting. |
nothing calls this directly
no outgoing calls
no test coverage detected