Spaces:
Configuration error
Configuration error
feat: Introduce new backend architecture with notebooks, sources, chat, and CLaRa models, alongside database schema and updated deployment scripts, while removing old frontend, deployment files, and previous backend components.
88f8604 | # Antigravity Notebook - .gitignore | |
| # Environment variables | |
| .env | |
| .env.local | |
| .env.*.local | |
| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| build/ | |
| develop-eggs/ | |
| dist/ | |
| downloads/ | |
| eggs/ | |
| .eggs/ | |
| lib/ | |
| lib64/ | |
| parts/ | |
| sdist/ | |
| var/ | |
| wheels/ | |
| share/python-wheels/ | |
| *.egg-info/ | |
| .installed.cfg | |
| *.egg | |
| MANIFEST | |
| # Virtual environments | |
| venv/ | |
| ENV/ | |
| env/ | |
| .venv | |
| # IDEs | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| .DS_Store | |
| # Model cache (CLaRa models - can be large!) | |
| model_cache/ | |
| *.bin | |
| *.safetensors | |
| # Data storage | |
| data/ | |
| latent_tensors/ | |
| *.pt | |
| *.pth | |
| # Database | |
| *.db | |
| *.sqlite | |
| *.sqlite3 | |
| # Docker | |
| docker-compose.override.yml | |
| # Logs | |
| *.log | |
| logs/ | |
| # Jupyter Notebooks | |
| .ipynb_checkpoints/ | |
| *.ipynb | |
| # Testing | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |
| .tox/ | |
| # Streamlit | |
| .streamlit/ | |
| # Temporary files | |
| tmp/ | |
| temp/ | |
| *.tmp | |
| # OS files | |
| .DS_Store | |
| Thumbs.db | |
| # Documentation builds | |
| docs/_build/ | |
| site/ | |