feat(module-llm): 为 KnowledgeBaseRespVO 类增加分块大小和重叠字段
- 在 KnowledgeBaseRespVO 类中添加 chunkSize 和 chunkOverlap 字段 - 为新字段添加 @Schema 注解以描述其用途
This commit is contained in:
parent
52f0a6a463
commit
8cb60e82a8
@ -52,4 +52,15 @@ public class KnowledgeBaseRespVO {
|
||||
@Schema(description = "文件引用上传")
|
||||
private List<KnowledgeDocumentsRespVO> knowledgeDocuments;
|
||||
|
||||
}
|
||||
/**
|
||||
* 分块大小
|
||||
*/
|
||||
@Schema(description = "分块大小")
|
||||
private Integer chunkSize;
|
||||
|
||||
/**
|
||||
* 分块重叠
|
||||
*/
|
||||
@Schema(description = "分块重叠,")
|
||||
private Integer chunkOverlap;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user