request.go 315 B

123456789101112
  1. package llm_http
  2. type LLMQuestionReq struct {
  3. Question string `description:"提问"`
  4. KnowledgeBase string `description:"知识库"`
  5. SessionId string `description:"会话ID"`
  6. }
  7. type UserChatReq struct {
  8. ChatId int `json:"ChatId"`
  9. ChatTitle string `json:"ChatTitle" description:"会话名称"`
  10. }