Files
LM-Gambit/.gitignore
T
Christopher Clendening adf61ae1a0 feat: add Settings and Suite pages with comprehensive settings management and question suite builder
- Implemented SettingsPage for configuring default provider, temperature, and model paths.
- Added SuitePage for managing a suite of questions with features to add, edit, duplicate, and delete questions.
- Introduced TypeScript configuration files for app and node environments.
- Set up Vite configuration for development server with API proxying to backend.
2026-07-27 17:41:08 -04:00

31 lines
397 B
Plaintext

# Ignore Python cache and compiled files
__pycache__/
*.pyc
*.pyo
*.pyd
# Ignore results folder and its contents
results/
# Ignore virtual environments
.venv/
venv/
ENV/
# Ignore system files
.DS_Store
# Ignore other build artifacts
*.egg-info/
# Frontend
web/node_modules/
web/dist/
node_modules/
# Local model weights
models/
# Locally persisted GUI/CLI settings
.core/user_settings.json