This commit is contained in:
2025-12-12 02:54:34 +09:00
parent 616a2894e0
commit 7d9069de1a
12 changed files with 994 additions and 117 deletions

View File

@@ -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
}