14 lines
303 B
Go
14 lines
303 B
Go
package models
|
|
|
|
type ToneCheckRequest struct {
|
|
Text string `json:"text"`
|
|
ImageURL *string `json:"image_url,omitempty"`
|
|
}
|
|
|
|
type ToneCheckResult struct {
|
|
Flagged bool `json:"flagged"`
|
|
Category *string `json:"category"`
|
|
Flags []string `json:"flags"`
|
|
Reason string `json:"reason"`
|
|
}
|