huminmin
21 小时以前 f688d1656a6542f1756f62e2f10a11ff4489674a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.ai.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
/**
 * 知识库问答请求
 */
@Data
@Schema(description = "知识库问答请求")
public class KnowledgeChatRequest {
 
    @Schema(description = "知识库ID", required = true)
    private Long knowledgeBaseId;
 
    @Schema(description = "会话ID,用于保持上下文", required = true)
    private String memoryId;
 
    @Schema(description = "用户提问内容", required = true)
    private String question;
}