(toolCalls any)
| 241 | } |
| 242 | |
| 243 | func (m *Message) SetToolCalls(toolCalls any) { |
| 244 | toolCallsJson, _ := json.Marshal(toolCalls) |
| 245 | m.ToolCalls = toolCallsJson |
| 246 | } |
| 247 | |
| 248 | func (m *Message) StringContent() string { |
| 249 | switch m.Content.(type) { |
no outgoing calls
no test coverage detected