request.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. package llm_http
  2. import "encoding/json"
  3. type LLMQuestionReq struct {
  4. Question string `description:"提问"`
  5. KnowledgeBase string `description:"知识库"`
  6. SessionId string `description:"会话ID"`
  7. }
  8. type UserChatReq struct {
  9. ChatId int `json:"ChatId"`
  10. ChatTitle string `json:"ChatTitle" description:"会话名称"`
  11. }
  12. type UserChatRecordReq struct {
  13. Id int `json:"Id"`
  14. ChatId int `json:"ChatId"`
  15. Content string `json:"Content" description:"会话名称"`
  16. ChatUserType string `json:"ChatUserType" description:"用户类型"`
  17. SendTime string `json:"SendTime" description:"发送时间"`
  18. }
  19. type GenerateContentReq struct {
  20. WechatArticleId int `json:"WechatArticleId" description:"公众号Id"`
  21. Promote string `json:"Promote" description:"提示词"`
  22. }
  23. type SaveContentReq struct {
  24. WechatArticleId int `json:"WechatArticleId" description:"公众号Id"`
  25. Title string `json:"Title" description:"标题"`
  26. Promote json.RawMessage `json:"Promote" description:"提示词"`
  27. AigcContent json.RawMessage `json:"AigcContent" description:"生成内容"`
  28. }
  29. type DeleteContentReq struct {
  30. RecordId int
  31. }
  32. type ContentListReq struct {
  33. WechatArticleId int
  34. }