geekai/api/store/vo/chat_model.go
2023-11-23 07:11:13 +08:00

13 lines
277 B
Go

package vo
type ChatModel struct {
BaseVo
Platform string `json:"platform"`
Name string `json:"name"`
Value string `json:"value"`
Enabled bool `json:"enabled"`
SortNum int `json:"sort_num"`
Weight int `json:"weight"`
Open bool `json:"open"`
}