Initial commit

This commit is contained in:
2026-03-31 13:28:59 +02:00
commit 7ec43ca17d
314 changed files with 189852 additions and 0 deletions

50
.gitignore vendored Normal file
View File

@@ -0,0 +1,50 @@
# ── Python ──────────────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.pyc
# ── Environnements virtuels ──────────────────────────────────────────────────
venv/
.venv/
env/
ENV/
Pipfile.lock
# ── Secrets ───────────────────────────────────────────────────────────────────
.env
.env.*
secret.env
secrets.py
*.secret
credentials.json
token.json
# ── Logs ─────────────────────────────────────────────────────────────────────
*.log
logs/
# ── IDE ───────────────────────────────────────────────────────────────────────
.vscode/
.idea/
*.swp
.DS_Store
Thumbs.db
# ── Tests / Coverage ─────────────────────────────────────────────────────────
.coverage
htmlcov/
.pytest_cache/
# ── Build ─────────────────────────────────────────────────────────────────────
dist/
build/
*.egg-info/
# ── Modèles IA (trop lourds pour git) ───────────────────────────────────────
*.gguf
*.bin
*.safetensors
models/
weights/