12345678910111213141516171819202122232425262728 |
- 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
- }
- type AIGCResp struct {
- Promote Content
- Answer Content
- }
- type Content struct {
- Role string
- Content string
- SendTime string
- }
|