response.go 483 B

12345678910111213141516171819202122232425262728
  1. package llm_http
  2. import "eta/eta_api/models/llm"
  3. type UserChatListResp struct {
  4. TodayList []llm.UserLlmChatListViewItem
  5. YesterdayList []llm.UserLlmChatListViewItem
  6. WeekList []llm.UserLlmChatListViewItem
  7. }
  8. type UserChatResp struct {
  9. ChatId int
  10. ChatTitle string
  11. SendTime string
  12. }
  13. type UserChatAddResp struct {
  14. SendTime string
  15. }
  16. type AIGCResp struct {
  17. Promote Content
  18. Answer Content
  19. }
  20. type Content struct {
  21. Role string
  22. Content string
  23. SendTime string
  24. }