2023-11-13 13:32:42 +08:00
|
|
|
package config
|
|
|
|
|
|
|
|
// ai
|
|
|
|
// @description: AI配置
|
|
|
|
type ai struct {
|
2024-01-31 12:02:33 +08:00
|
|
|
Enable bool `json:"enable" yaml:"enable"` // 是否启用AI
|
|
|
|
Model string `json:"model" yaml:"model"` // 模型
|
|
|
|
ApiKey string `json:"apiKey" yaml:"apiKey"` // API Key
|
|
|
|
BaseUrl string `json:"baseUrl" yaml:"baseUrl"` // API地址
|
|
|
|
Personality string `json:"personality" yaml:"personality"` // 人设
|
|
|
|
Models []aiModel `json:"models" yaml:"models"` // 模型列表
|
|
|
|
}
|
|
|
|
|
|
|
|
// aiModel
|
|
|
|
// @description: AI模型
|
|
|
|
type aiModel struct {
|
|
|
|
Name string `json:"name" yaml:"name"` // 模型名称
|
|
|
|
Model string `json:"model" yaml:"model"` // 模型代码
|
2023-11-13 13:32:42 +08:00
|
|
|
}
|