request.go 1.3 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. WechatArticleId int `json:"WechatArticleId" description:"公众号Id"`
  21. Promote string `json:"Promote" description:"提示词"`
  22. LLMModel string `json:"LLMModel"`
  23. }
  24. type SaveContentReq struct {
  25. WechatArticleId int `json:"WechatArticleId" description:"公众号Id"`
  26. Title string `json:"Title" description:"标题"`
  27. Llm string `json:"LLM"`
  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. }