docs: 키워드 검색(TSVECTOR) 미구현 상태 명시, 적용1 흐름에 벡터+키워드+그래프 3중 검색 반영

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
happybell80 2026-03-20 17:38:42 +09:00
parent 3a06a3f20f
commit 1722d16e32
2 changed files with 8 additions and 5 deletions

View File

@ -45,6 +45,7 @@
- 인덱싱 스크립트: `skill-rag-file/scripts/reindex_companyx_latest_200.py`
- 200개 대상 파일 리스트: `/tmp/latest_200_companyx.txt`
- 텍스트 추출 + 청크 + Gemini Embedding 2 적재 완료
- **미구현**: `team_document_chunk`에 tsvector 컬럼 없음 → 키워드 검색(TSVECTOR + GIN) 추가 필요
## 보류

View File

@ -40,11 +40,13 @@
1. 사용자 질문 수신
2. 메타 필터 후보 결정
3. PGVector/키워드 검색
4. 관련 문서 확장
5. 근거 청크 선택
6. 로빙 응답 생성
7. 사용한 근거 기록
3. PGVector 벡터 검색 (의미 검색)
4. TSVECTOR 키워드 검색 (정확 매칭)
5. 벡터+키워드 하이브리드 점수 합산 (RRF 등)
6. Apache AGE 그래프 관계 확장
7. 근거 청크 선택
8. 로빙 응답 생성
9. 사용한 근거 기록
## 1차 목표