| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *.pyo | |
| *.pyd | |
| *.so | |
| *.egg-info/ | |
| .pytest_cache/ | |
| .mypy_cache/ | |
| .ruff_cache/ | |
| # Virtual environments | |
| .venv/ | |
| venv/ | |
| env/ | |
| # Environment files and secrets | |
| .env | |
| app/.env | |
| *.env.local | |
| # IDE/editor | |
| .vscode/ | |
| .idea/ | |
| # OS files | |
| .DS_Store | |
| Thumbs.db | |
| # Runtime and local data | |
| data/raw_text/ | |
| data/vector_index/ | |
| *.faiss | |
| *.meta.json | |
| *.log | |
| context.txt | |
| # Hugging Face and model cache | |
| .cache/ | |
| .huggingface/ | |
| # Build artifacts | |
| dist/ | |
| build/ | |
| prompt.md | |
| stud_info.md | |
| test_db_to_api.py | |
| test.ipynb | |
| ingest_syllabus_to_neon.py |