type Model struct {
ID string `json:"id"`
Created int64 `json:"created"`
Object string `json:"object"`
OwnedBy string `json:"owned_by"`
Features []kubeaiv1.ModelFeature `json:"features,omitempty"`
}
Model is a struct that represents a model object
from the OpenAI API.