Prepend "./" to file paths passed to SimpleDirectoryReader during incremental updates so source document metadata matches full rebuilds. Also add API_key_temp to .gitignore.
32 lines
387 B
Text
32 lines
387 B
Text
# Python
|
|
.venv/
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# HuggingFace cached models (large, ~2 GB)
|
|
models/
|
|
|
|
# Vector stores (large, rebuild with build_exp_claude.py)
|
|
storage_exp/
|
|
storage/
|
|
|
|
# Data (symlink to private journal files)
|
|
data
|
|
|
|
# IDE and OS
|
|
.DS_Store
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Jupyter checkpoints
|
|
.ipynb_checkpoints/
|
|
|
|
# Secrets
|
|
.env
|
|
API_key_temp
|
|
|
|
# Query log
|
|
query.log
|
|
|
|
# Duplicate of CLAUDE.md
|
|
claude.md
|