Chirag0123 commited on
Commit
add45f4
·
1 Parent(s): 66142ac

chore: add .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +47 -5
.gitignore CHANGED
@@ -1,9 +1,51 @@
1
- __pycache__/
2
- *.pyc
3
- *.pyo
4
  venv/
 
5
  .env
6
- *.egg-info/
7
- dist/
 
 
 
 
 
 
8
  build/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  .pytest_cache/
 
 
 
1
+ # Environments
 
 
2
  venv/
3
+ env/
4
  .env
5
+ .venv
6
+
7
+ # Python
8
+ __pycache__/
9
+ *.py[cod]
10
+ *$py.class
11
+ *.so
12
+ .Python
13
  build/
14
+ develop-eggs/
15
+ dist/
16
+ downloads/
17
+ eggs/
18
+ .eggs/
19
+ lib/
20
+ lib64/
21
+ parts/
22
+ sdist/
23
+ var/
24
+ wheels/
25
+ share/python-wheels/
26
+ *.egg-info/
27
+ .installed.cfg
28
+ *.egg
29
+
30
+ # Hugging Face / Model Weights
31
+ *.safetensors
32
+ *.bin
33
+ *.h5
34
+ *.msgpack
35
+
36
+ # IDEs
37
+ .idea/
38
+ .vscode/
39
+ *.swp
40
+ *.swo
41
+
42
+ # MacOS
43
+ .DS_Store
44
+
45
+ # Local Agent Memory
46
+ agent_memory.json
47
+
48
+ # Pytest / Coverage
49
  .pytest_cache/
50
+ .coverage
51
+ htmlcov/