11 lines
552 B
Go
11 lines
552 B
Go
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"` // 在回答中显示引用来源
|
|
}
|