mirror of
https://github.com/lordmathis/llamactl.git
synced 2025-11-06 17:14:28 +00:00
14 lines
301 B
Go
14 lines
301 B
Go
package llamactl
|
|
|
|
type OpenAIListInstancesResponse struct {
|
|
Object string `json:"object"`
|
|
Data []OpenAIInstance `json:"data"`
|
|
}
|
|
|
|
type OpenAIInstance struct {
|
|
ID string `json:"id"`
|
|
Object string `json:"object"`
|
|
Created int64 `json:"created"`
|
|
OwnedBy string `json:"owned_by"`
|
|
}
|