go.bigb.es/claudio
Index
Types
type ListResponse struct { Object string `json:"object"` Data []Model `json:"data"` }
type Model struct { ID string `json:"id"` Object string `json:"object"` Created int64 `json:"created"` OwnedBy string `json:"owned_by"` }
Model represents an LM Studio model from the /v1/models endpoint.
func ListModels(baseURL string) ([]Model, error)
ListModels fetches available models from the LM Studio server.
ListResponse is the response from the /v1/models endpoint.