mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +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
|
|
}
|