init push
This commit is contained in:
10
backend/domain/prompt.go
Normal file
10
backend/domain/prompt.go
Normal file
@@ -0,0 +1,10 @@
|
||||
package domain
|
||||
|
||||
type Prompt struct {
|
||||
Content string `json:"content"`
|
||||
SummaryContent string `json:"summary_content"`
|
||||
EnablePreset bool `json:"enable_preset"`
|
||||
EnablePresetAutoLanguage bool `json:"enable_preset_auto_language"` // 允许AI自动匹配用户提问的语言进行回复
|
||||
EnablePresetGeneralInfo bool `json:"enable_preset_general_info"` // 允许AI结合通用知识进行补充回答
|
||||
EnablePresetReference bool `json:"enable_preset_reference"` // 在回答中显示引用来源
|
||||
}
|
||||
Reference in New Issue
Block a user