mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
14 lines
366 B
Go
14 lines
366 B
Go
package vo
|
|
|
|
// ApiKey OpenAI API 模型
|
|
type ApiKey struct {
|
|
BaseVo
|
|
Platform string `json:"platform"`
|
|
Type string `json:"type"`
|
|
Value string `json:"value"` // API Key 的值
|
|
ApiURL string `json:"api_url"`
|
|
Enabled bool `json:"enabled"`
|
|
UseProxy bool `json:"use_proxy"`
|
|
LastUsedAt int64 `json:"last_used_at"` // 最后使用时间
|
|
}
|