(role, content string)
| 214 | } |
| 215 | |
| 216 | func NewTextMessage(role, content string) APIMessage { |
| 217 | return APIMessage{Role: role, Content: MessageContent{TextValue: content}} |
| 218 | } |
| 219 | |
| 220 | func (c *MessageContent) UnmarshalJSON(data []byte) error { |
| 221 | var text string |
no outgoing calls