2024-05-13 23:02:35 +08:00
|
|
|
package dto
|
|
|
|
|
|
2025-07-03 13:10:25 +08:00
|
|
|
import "one-api/constant"
|
2024-05-13 23:02:35 +08:00
|
|
|
|
|
|
|
|
type OpenAIModels struct {
|
2025-07-03 13:10:25 +08:00
|
|
|
Id string `json:"id"`
|
|
|
|
|
Object string `json:"object"`
|
|
|
|
|
Created int `json:"created"`
|
|
|
|
|
OwnedBy string `json:"owned_by"`
|
|
|
|
|
SupportedEndpointTypes []constant.EndpointType `json:"supported_endpoint_types"`
|
2024-05-13 23:02:35 +08:00
|
|
|
}
|