123456789101112131415161718192021222324252627282930313233 |
- 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
- }
- type KnowledgeList struct {
- Name string
- KnowledgeName string
- }
|