Sync: Autonomy-System, Natural Language Engine, WebUI + .gitignore

- 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)
This commit is contained in:
Arch Agent
2026-03-10 16:04:26 +01:00
parent 3b5f6ba83d
commit eb6dcac545
96 changed files with 83 additions and 88 deletions

46
.gitignore vendored Normal file
View File

@@ -0,0 +1,46 @@
# 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