From e8c5dc7e2b024a6f04904285a080a6070d2aed29 Mon Sep 17 00:00:00 2001 From: TheFlow Date: Tue, 4 Nov 2025 06:53:53 +1300 Subject: [PATCH] fix: exclude AL model files from git and deployment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds exclusions for al-integration/models/ (28GB Mistral-7B) and venv directories. Changes: - Added al-integration/models/ to .gitignore - Added al-integration/venv/ to .gitignore - Added both to .rsyncignore for deployment exclusion Fixes deployment OOM issue caused by attempting to upload 28GB model files. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitignore | 3 +++ .rsyncignore | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/.gitignore b/.gitignore index 25585b40..8317f491 100644 --- a/.gitignore +++ b/.gitignore @@ -75,6 +75,9 @@ hf-spaces/ # Demo virtual environments demos/*/venv/ +# AL integration models (huge LLM files) +al-integration/models/ +al-integration/venv/ # Session planning and Discord docs docs/discord/ diff --git a/.rsyncignore b/.rsyncignore index 5af7ece7..d0ecf8b3 100644 --- a/.rsyncignore +++ b/.rsyncignore @@ -48,6 +48,12 @@ docs/DOCUMENT_SECURITY_GOVERNANCE.md # Development Files # ============================================ node_modules/ + +# ============================================ +# AL Integration - Large Model Files +# ============================================ +al-integration/models/ +al-integration/venv/ .git/ .gitignore package-lock.json