13 lines
255 B
Go
13 lines
255 B
Go
|
package types
|
||
|
|
||
|
type ModerationRequest struct {
|
||
|
Input string `json:"input,omitempty"`
|
||
|
Model string `json:"model,omitempty"`
|
||
|
}
|
||
|
|
||
|
type ModerationResponse struct {
|
||
|
ID string `json:"id"`
|
||
|
Model string `json:"model"`
|
||
|
Results any `json:"results"`
|
||
|
}
|