response.go 281 B

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