Files
gpu-rent/.gitignore
T
Leonid Pershin 2005b00175 Update configuration and documentation for LLM support and local watchdog
- Added `ollama-models.yaml` to .gitignore and implemented logic to copy it in gpu-rent.ps1 and gpu-rent.sh.
- Enhanced env.example to include new variables for LLM runtime options and local watchdog configuration.
- Updated CLI commands to support LLM options during setup and execution, including new flags for Ollama and llama.cpp.
- Improved documentation in cli.md and README.md to reflect changes in LLM integration and local watchdog functionality.
- Adjusted architecture and decisions documentation to clarify the role of LLMs and local watchdog in the system.
2026-08-21 05:29:23 +03:00

38 lines
609 B
Plaintext

# Secrets and local weights — never commit
.env
.env.*
!.env.example
gpu-rent.vars
ollama-models.yaml
models.yaml
extensions.yaml
# SwarmUI checkpoints / LoRA dropped into the app tree
Models/**
!Models/**/.gitkeep
!Models/README.md
Wildcards/**
!Wildcards/**/.gitkeep
!Wildcards/README.md
CustomWorkflows/**
!CustomWorkflows/**/.gitkeep
!CustomWorkflows/README.md
Output/**
!Output/**/.gitkeep
!Output/README.md
# Python
.venv/
__pycache__/
*.pyc
dist/
*.egg-info/
# Local CLI state / SSH key (inside the repo, not under %)
.gpu-rent/
.pytest_cache/
.mypy_cache/