Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion retrieval/local_retriever.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
# 프롬프트 경로
PROMPTS_DIR = Path(__file__).parent / "prompts"
ENTITY_PROMPT_PATH = PROMPTS_DIR / "local_retriever_entity_v1.md"
ANSWER_PROMPT_PATH = PROMPTS_DIR / "local_retriever_answer_v2.md"
ANSWER_PROMPT_PATH = PROMPTS_DIR / "local_retriever_answer_v1.md"

# 지원 entity 라벨 (스키마 §3 — extractor 와 일치)
SUPPORTED_LABELS = ("Company", "Risk", "Metric", "Outlook", "Recommendation")
Expand Down
108 changes: 0 additions & 108 deletions retrieval/prompts/local_retriever_answer_v2.md

This file was deleted.

90 changes: 0 additions & 90 deletions retrieval/prompts/text2cypher_answer_v2.md

This file was deleted.

2 changes: 1 addition & 1 deletion retrieval/text2cypher.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
# 프롬프트 경로 (extractor 와 동일 패턴)
PROMPTS_DIR = Path(__file__).parent / "prompts"
SYSTEM_PROMPT_PATH = PROMPTS_DIR / "text2cypher_system_v1.md"
ANSWER_PROMPT_PATH = PROMPTS_DIR / "text2cypher_answer_v2.md"
ANSWER_PROMPT_PATH = PROMPTS_DIR / "text2cypher_answer_v1.md"

# read-only 강제 — 본 모듈의 핵심 안전장치.
# Neo4jClient.read 도 강제하지만 본 모듈 단계에서 더 빨리 차단하는 게 좋음
Expand Down