56 lines
691 B
Plaintext
56 lines
691 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Environment and secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
上传的.env.txt
|
|
|
|
# IDE / local tooling
|
|
.vscode/
|
|
.idea/
|
|
.claude/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Runtime data and vector stores
|
|
data/
|
|
vector_db/
|
|
vector_db_backup_*/
|
|
vector_db_faiss_smoke/
|
|
vector_db_meta_probe/
|
|
vector_db_probe/
|
|
vector_db_rag_smoke/
|
|
vector_db_refactor_smoke/
|
|
vector_db_seq_default/
|
|
vector_db_seq_tuned/
|
|
vector_db_smoke/
|
|
vector_db_smoke2/
|
|
vector_db_smoke_final/
|
|
*.db
|
|
|
|
# Logs and temporary probes
|
|
*.log
|
|
*.err
|
|
tmp_chroma_api/
|
|
tmp_chroma_sig/
|
|
tmp_wechat_probe/
|
|
|
|
# OS / misc
|
|
Thumbs.db
|
|
Desktop.ini
|