🎨 优化AI对话角色设置,支持为群或者好友单独设置角色(需手动修改数据库)

This commit is contained in:
李寻欢
2024-04-16 17:19:08 +08:00
parent bb92c67069
commit daa36f308b
2 changed files with 8 additions and 1 deletions

View File

@@ -15,6 +15,7 @@ type Friend struct {
LastActive time.Time `json:"lastActive"` // 最后活跃时间
EnableAi bool `json:"enableAI" gorm:"type:tinyint(1) default 0 not null"` // 是否使用AI
AiModel string `json:"aiModel"` // AI模型
Prompt string `json:"prompt"` // 提示词
EnableChatRank bool `json:"enableChatRank" gorm:"type:tinyint(1) default 0 not null"` // 是否使用聊天排行
EnableWelcome bool `json:"enableWelcome" gorm:"type:tinyint(1) default 0 not null"` // 是否启用迎新
EnableSummary bool `json:"enableSummary" gorm:"type:tinyint(1) default 0 not null"` // 是否启用总结