b280c2b453
Add rag submodule for semantic JRXML chunk retrieval, refactor retrieve node to use RAGSearcher, and fix missing api_key in Anthropic SDK client initialization. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
32 lines
354 B
Plaintext
32 lines
354 B
Plaintext
# 环境配置(含密钥)
|
|
.env
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
dist/
|
|
.venv/
|
|
|
|
# 数据库
|
|
db/chroma/
|
|
sessions/
|
|
|
|
# RAG 管线中间产物 (rag 子模块内)
|
|
rag/jrxml_chunker_output/
|
|
rag/embeddings/
|
|
rag/models/
|
|
rag/__pycache__/
|
|
rag/chroma_db/
|
|
rag/jrxml_source_chunks/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# 系统文件
|
|
Thumbs.db
|
|
.DS_Store
|