package llm_http type LLMQuestionReq struct { Question string `description:"提问"` KnowledgeBase string `description:"知识库"` SessionId string `description:"会话ID"` } type CreateChatReq struct { ChatTitle string `json:"ChatTitle" description:"会话名称"` }