pricing.go 406 B

1234567891011
  1. package dto
  2. import "one-api/constant"
  3. type OpenAIModels struct {
  4. Id string `json:"id"`
  5. Object string `json:"object"`
  6. Created int `json:"created"`
  7. OwnedBy string `json:"owned_by"`
  8. SupportedEndpointTypes []constant.EndpointType `json:"supported_endpoint_types"`
  9. }