# Git .git .gitignore .gitattributes # Python __pycache__ *.py[cod] *$py.class *.so .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ *.egg-info/ .installed.cfg *.egg .mypy_cache/ .pytest_cache/ .coverage htmlcov/ # Virtual environments venv/ ENV/ env/ .venv/ sparknet/ # IDE .idea/ .vscode/ *.swp *.swo *~ # OS .DS_Store Thumbs.db # Logs *.log logs/ # Local data (will be mounted as volumes) data/vectorstore/ data/embedding_cache/ uploads/ outputs/ # Tests tests/ .pytest_cache/ # Documentation docs/ *.md !README.md # Notebooks *.ipynb .ipynb_checkpoints/ # Backup files .backup/ *.bak # Screenshots screenshots/ # Development files *.env.local *.env.development *.env.test # Large files *.pdf *.pptx *.docx Dataset/ presentation/