init push

This commit is contained in:
2026-05-21 19:52:45 +08:00
commit e3f75311ab
1280 changed files with 179173 additions and 0 deletions

10
backend/domain/prompt.go Normal file
View 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"` // 在回答中显示引用来源
}