1234567891011121314151617 |
- package llm_http
- import "eta/eta_api/models/llm"
- type UserChatListResp struct {
- TodayList []llm.UserLlmChatListViewItem
- YesterdayList []llm.UserLlmChatListViewItem
- WeekList []llm.UserLlmChatListViewItem
- }
- type UserChatResp struct {
- ChatId int
- ChatTitle string
- SendTime string
- }
- type UserChatAddResp struct {
- SendTime string
- }
|