mirror of
https://github.com/lordmathis/llamactl.git
synced 2025-11-05 16:44:22 +00:00
14 lines
299 B
Go
14 lines
299 B
Go
package server
|
|
|
|
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"`
|
|
}
|