()
| 106 | } |
| 107 | |
| 108 | func (c *ClaudeMessage) IsStringContent() bool { |
| 109 | if c.Content == nil { |
| 110 | return false |
| 111 | } |
| 112 | _, ok := c.Content.(string) |
| 113 | return ok |
| 114 | } |
| 115 | |
| 116 | func (c *ClaudeMessage) GetStringContent() string { |
| 117 | if c.Content == nil { |
no outgoing calls
no test coverage detected