Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
kardolus
GitHub Repository: kardolus/chatgpt-cli
Path: blob/main/api/models.go
2649 views
1
package api
2
3
type ListModelsResponse struct {
4
Object string `json:"object"`
5
Data []Model `json:"data"`
6
}
7
8
type Model struct {
9
Id string `json:"id"`
10
Object string `json:"object"`
11
Created int `json:"created"`
12
OwnedBy string `json:"owned_by"`
13
Parent *string `json:"parent"`
14
}
15
16