package api
type ListModelsResponse struct {
Object string `json:"object"`
Data []Model `json:"data"`
}
type Model struct {
Id string `json:"id"`
Object string `json:"object"`
Created int `json:"created"`
OwnedBy string `json:"owned_by"`
Parent *string `json:"parent"`
}