mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-29 14:46:38 +08:00
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"`
|
|
}
|