# Temporary and binary files
*~
*.py[cod]
*.so
*.cfg
!.isort.cfg
!setup.cfg
*.orig
*.log
*.pot
__pycache__/*
.cache/*
.*.swp
*/.ipynb_checkpoints/*
.DS_Store

# Project files
.ropeproject
.project
.pydevproject
.settings
.idea
.vscode
tags

# Package files
*.egg
*.eggs/
.installed.cfg
*.egg-info

# Unittest and coverage
htmlcov/*
.coverage
.coverage.*
.tox
junit*.xml
coverage.xml
.pytest_cache/

# Build and docs folder/files
build/*
dist/*
sdist/*
docs/api/*
docs/_rst/*
docs/_build/*
cover/*
MANIFEST
data/*.py
.tests/notebooks/docs/*
.tests/notebooks/GA_VDB_PATH/*
.tests/notebooks/docs/GA_VDB/*
.tests/notebooks/{ATO*,cybersage*,*TechFest*,vast*,demoGraphAide*}
.tests/notebooks/*.{npy,nt,json,pdf}
.tests/docs/chroma/*
.tests/docs/chroma/chroma.sqlite3
.claude/*
./*.{ttl,nt,owl,TODO.md}
.local_vectorstores*/
.local_vectorstores/*

# Vector store databases (local development only, never commit)
src/graphgen/v2/docs/GA_VDB/
src/graphgen/v2/docs/chroma.sqlite3

# Per-project virtualenvs
.venv*/
.conda*/
.python-version

.env
.env.*
.hideenv

# Configuration files (local/prod specific, never commit)
config-prod-*.json
config-dev-*.json
config.local.py

# Docker Compose local overrides
docker-compose.override.yml

# Session history files (keep locally, don't commit)
SESSION_HISTORY_*.md

# Project guidance and test notebooks (local only)
CLAUDE.md
demoGraphAide_CORNIFER.ipynb

# Test output files
tests/notebooks/GraphAide_KG_Extract_*.json
tests/notebooks/*.log
tests/test_graphaide_facade.py
# Test output files - no JSON, NPY, or PNY files in tests/notebooks/
tests/notebooks/*.json
tests/notebooks/*.npy
tests/notebooks/*.npy.metadata.json
tests/notebooks/*.pny
tests/notebooks/**/*.json
tests/notebooks/**/*.npy
tests/notebooks/**/*.pny

# Notebook test data and temporary databases
tests/notebooks/docs/
tests/notebooks/testvdbtmp/
tests/notebooks/**/*.ipynb
tests/notebooks/*.ipynb


# Chroma vector database
tests/docs/chroma/
tests/docs/chroma.sqlite3


# Python test scripts in notebooks folder
tests/notebooks/*.py


# Document files in notebooks folder
tests/notebooks/*.pdf
tests/notebooks/*.nt
tests/notebooks/*.txt

