- 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:"会话名称"`
- }
|