1234567891011121314151617181920 |
- package llm_http
- type LLMQuestionReq struct {
- Question string `description:"提问"`
- KnowledgeBase string `description:"知识库"`
- SessionId string `description:"会话ID"`
- }
- type UserChatReq struct {
- ChatId int `json:"ChatId"`
- ChatTitle string `json:"ChatTitle" description:"会话名称"`
- }
- type UserChatRecordReq struct {
- Id int `json:"Id"`
- ChatId int `json:"ChatId"`
- Content string `json:"Content" description:"会话名称"`
- ChatUserType string `json:"ChatUserType" description:"用户类型"`
- SendTime string `json:"SendTime" description:"发送时间"`
- }
|