request.go 284 B

1234567891011
  1. package llm_http
  2. type LLMQuestionReq struct {
  3. Question string `description:"提问"`
  4. KnowledgeBase string `description:"知识库"`
  5. SessionId string `description:"会话ID"`
  6. }
  7. type CreateChatReq struct {
  8. ChatTitle string `json:"ChatTitle" description:"会话名称"`
  9. }