response.go 348 B

1234567891011121314151617
  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. }