- NatirisMaster.py aktualisiert - NaturalLanguageEngine optimiert - PsychologyEngine & Arousal-Engine - WebUI (FastAPI) mit Chat-API - Bridges: ComfyUI, Ollama, Vision - Admin-Auth System - .gitignore hinzugefügt (checkpoints, logs, generated)
47 lines
508 B
Plaintext
47 lines
508 B
Plaintext
# Natiris Git Ignore
|
|
|
|
# Checkpoints (zu viele, werden dynamisch generiert)
|
|
checkpoints/*.json
|
|
|
|
# Logs
|
|
logs/*.log
|
|
logs/*.json
|
|
test_logs/*.log
|
|
*.log
|
|
|
|
# Generated content
|
|
generated/*.png
|
|
generated/*.json
|
|
|
|
# Python cache
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
|
|
# JSON state files (werden zur Laufzeit erstellt)
|
|
*state.json
|
|
*response.json
|
|
*output.json
|
|
*history.json
|
|
*.pid
|
|
|
|
# Backup files
|
|
*.backup
|
|
*.backup_v*
|
|
|
|
# Test artefacts
|
|
.pytest_cache/
|
|
.coverage
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|