2023-11-29 08:54:37 +00:00
|
|
|
package types
|
|
|
|
|
|
|
|
type ModerationRequest struct {
|
2023-12-01 19:28:18 +00:00
|
|
|
Input string `json:"input,omitempty" binding:"required"`
|
2023-11-29 08:54:37 +00:00
|
|
|
Model string `json:"model,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ModerationResponse struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
Model string `json:"model"`
|
|
|
|
Results any `json:"results"`
|
|
|
|
}
|