package cn.iocoder.yudao.module.ai.controller.admin.knowledge.vo.document;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import java.time.LocalDateTime;
|
|
@Schema(description = "管理后台 - AI 知识库文档 Response VO")
|
@Data
|
public class AiKnowledgeDocumentRespVO {
|
|
@Schema(description = "编号", example = "1")
|
private Long id;
|
|
@Schema(description = "知识库编号", example = "1")
|
private Long knowledgeId;
|
|
@Schema(description = "文档名称", example = "产品手册")
|
private String name;
|
|
@Schema(description = "文档 URL")
|
private String url;
|
|
@Schema(description = "内容长度")
|
private Integer contentLength;
|
|
@Schema(description = "Token 数")
|
private Integer tokens;
|
|
@Schema(description = "分段最大 Token 数")
|
private Integer segmentMaxTokens;
|
|
@Schema(description = "检索次数")
|
private Integer retrievalCount;
|
|
@Schema(description = "状态", example = "0")
|
private Integer status;
|
|
@Schema(description = "创建时间")
|
private LocalDateTime createTime;
|
|
}
|