mirror of
https://gitee.com/blackfox/geekai.git
synced 2024-12-06 06:07:41 +08:00
15 lines
391 B
Go
15 lines
391 B
Go
package model
|
||
|
||
// ApiKey OpenAI API 模型
|
||
type ApiKey struct {
|
||
BaseModel
|
||
Platform string
|
||
Name string
|
||
Type string // 用途 chat => 聊天,img => 绘图
|
||
Value string // API Key 的值
|
||
ApiURL string // 当前 KEY 的 API 地址
|
||
Enabled bool // 是否启用
|
||
UseProxy bool // 是否使用代理访问 API URL
|
||
LastUsedAt int64 // 最后使用时间
|
||
}
|