request.go 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. Source int `json:"Source" description:"来源,0:公众号文章,1:eta报告"`
  21. WechatArticleId int `json:"WechatArticleId" description:"公众号文章Id"`
  22. Promote string `json:"Promote" description:"提示词"`
  23. }
  24. type SaveContentReq struct {
  25. Source int `json:"Source" description:"来源,0:公众号文章,1:eta报告"`
  26. WechatArticleId int `json:"WechatArticleId" description:"公众号文章Id"`
  27. Title string `json:"Title" description:"标题"`
  28. Promote json.RawMessage `json:"Promote" description:"提示词"`
  29. AigcContent json.RawMessage `json:"AigcContent" description:"生成内容"`
  30. }
  31. type DeleteContentReq struct {
  32. RecordId int
  33. }
  34. type ContentListReq struct {
  35. WechatArticleId int
  36. }