변경2
This commit is contained in:
@@ -49,4 +49,18 @@ public class DocChunk {
|
||||
@Column(name = "created_at")
|
||||
@Builder.Default
|
||||
private LocalDateTime createdAt = LocalDateTime.now();
|
||||
|
||||
// LLM 기반 메타데이터
|
||||
@Column(name = "chunk_summary", columnDefinition = "TEXT")
|
||||
private String chunkSummary; // 청크 요약
|
||||
|
||||
@Column(name = "chunk_keywords")
|
||||
private String chunkKeywords; // 핵심 키워드 (쉼표 구분)
|
||||
|
||||
@Column(name = "chunk_questions", columnDefinition = "TEXT")
|
||||
private String chunkQuestions; // 예상 질문 (JSON 배열)
|
||||
|
||||
@Column(name = "chunk_type", length = 20)
|
||||
@Builder.Default
|
||||
private String chunkType = "text"; // text, image, table
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user