go-wxhelper/config/ai.go
李寻欢 60bfa0e8a0
All checks were successful
BuildImage / build-image (push) Successful in 1m22s
新增一个简易的AI机器人
2023-11-13 13:32:42 +08:00

10 lines
253 B
Go

package config
// ai
// @description: AI配置
type ai struct {
Enable bool `json:"enable" yaml:"enable"` // 是否启用AI
ApiKey string `json:"apiKey" yaml:"apiKey"` // API Key
BaseUrl string `json:"baseUrl" yaml:"baseUrl"` // API地址
}