-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
56 lines (47 loc) · 1.54 KB
/
Copy path.gitignore
File metadata and controls
56 lines (47 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# ----------------------------------------------------------------------
# FICHIERS PYTHON ET VIRTUAL ENV
# ----------------------------------------------------------------------
# Virtual Environment
/venv/
__pycache__/
*.pyc
*.pyd
*.so
.mypy_cache/
.pytest_cache/
.ipynb_checkpoints
# Logs et Données Temporaires
*.log
# ----------------------------------------------------------------------
# REAGENT SPECIFIQUE
# ----------------------------------------------------------------------
# Fichiers sensibles ou volumineux (NE PAS PUSHER)
# 1. Modèles LLM locaux (très volumineux)
/models/
*.gguf
*.bin
# 2. Dossier de travail de l'agent (outputs)
# Contient KB, rapports, binaires patchés, verrous et captures d'écran.
/outputs/
!/outputs/README.md # Exclure le dossier mais garder un éventuel README vide
/outputs/knowledge.json [cite: 7]
/outputs/*.png [cite: 204]
/outputs/*.json # Sorties Ghidra (ghidra_result_*.json) [cite: 253]
/outputs/*.exe
/outputs/*.dll
/outputs/temp_ghidra_proj/ # Projet Ghidra Headless [cite: 248]
# ----------------------------------------------------------------------
# OUTILS SPECIFIQUES
# ----------------------------------------------------------------------
# Cache Tesseract OCR (peut devenir volumineux)
.tesseract_cache/
# Fichiers de verrouillage Ghidra (verrous temporaires)
*.lock [cite: 250]
db.2.lock [cite: 251]
# ----------------------------------------------------------------------
# ENVIRONNEMENTS (VS CODE / IDE)
# ----------------------------------------------------------------------
.vscode/
.idea/
*.swp
*~