# Model weights (gigabytes). The engine's models root - `models_dir()` defaults to ./models, and
# runners scan ./models/<category>/ (e.g. diffusion_models/). Leading slash anchors this to the repo
# root ONLY, so the source package src/inline_core/models/ (code) stays tracked.
/models/

# Engine working data: the run DB and generated takes (also grows to gigabytes).
/.inline/

# Installed community extensions - `extensions_dir()` defaults to ./extensions (state.json, the
# per-extension source/venv, and the .cache/git mirrors). Runtime data, never committed.
/extensions/

# Studio app data + project workspace (when created under the repo) and local server logs.
/.inline-studio-server/
/InlineStudioProjects/
*.log

# Python venv + bytecode
.venv/
__pycache__/
*.py[cod]

# Local env overrides
.env
