- 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.
31 lines
397 B
Plaintext
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
|