- Langzeit- und Kurzzeitgedächtnis mit SQLite - Ollama-Integration für lokale LLMs - Flask-Webinterface mit Stream-Response - Persona-System mit konfigurierbarem Charakter - Auto-Zusammenfassung bei Token-Limit - Rate Limiting und Sicherheitsfeatures - Uncensored Modell-Support
32 lines
286 B
Plaintext
32 lines
286 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Logs und Datenbank (werden generiert)
|
|
logs/*.db
|
|
logs/*.log
|
|
*.db
|
|
*.log
|
|
|
|
# Virtual Environment
|
|
venv/
|
|
.env/
|
|
.venv/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Secrets / Local Config
|
|
config_local.yaml
|
|
*.key
|
|
.env
|