geekai/api/store/model/chat_model.go

13 lines
248 B
Go
Raw Normal View History

package model
type ChatModel struct {
BaseModel
Platform string
Name string
Value string // API Key 的值
SortNum int
Enabled bool
Power int // 每次对话消耗算力
2023-11-23 07:11:13 +08:00
Open bool // 是否开放模型给所有人使用
}