Kiy-K commited on
Commit
47cba79
·
verified ·
1 Parent(s): 0e10adf

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +68 -0
.gitignore ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+
23
+ # Virtual Environment
24
+ venv/
25
+ env/
26
+ ENV/
27
+ .venv
28
+
29
+ # IDE
30
+ .vscode/
31
+ .idea/
32
+ *.swp
33
+ *.swo
34
+ *~
35
+ .DS_Store
36
+
37
+ # Gradio
38
+ gradio_cached_examples/
39
+ flagged/
40
+
41
+ # AG2 / AutoGen
42
+ coding/
43
+ .cache/
44
+ fyodor_memory_db/
45
+
46
+ # Model cache
47
+ models/
48
+ checkpoints/
49
+
50
+ # Logs
51
+ *.log
52
+ logs/
53
+
54
+ # Environment variables
55
+ .env
56
+ .env.local
57
+
58
+ # Jupyter
59
+ .ipynb_checkpoints/
60
+ *.ipynb
61
+
62
+ # HuggingFace
63
+ .huggingface/
64
+
65
+ # Temporary files
66
+ tmp/
67
+ temp/
68
+ *.tmp