47 lines
447 B
Plaintext
47 lines
447 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Models (too large for git)
|
|
models/*.gguf
|
|
models/*.bin
|
|
|
|
# Keep the directory structure
|
|
!models/.gitkeep
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Docker
|
|
.dockerignore
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Bot memory (contains user data)
|
|
bot/memory/*.json
|
|
!bot/memory/.gitkeep
|