mirror of
https://gitee.com/blackfox/geekai.git
synced 2025-12-07 17:28:25 +08:00
11 lines
150 B
Go
11 lines
150 B
Go
package model
|
|
|
|
type ChatModel struct {
|
|
BaseModel
|
|
Platform string
|
|
Name string
|
|
Value string // API Key 的值
|
|
SortNum int
|
|
Enabled bool
|
|
}
|