Commit
·
397d99c
1
Parent(s):
04fb8a3
Remove sqlite DB and add to .gitignore
Browse files- .gitignore +241 -0
.gitignore
CHANGED
@@ -1 +1,242 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
chroma_db/*.sqlite3
|
|
|
1 |
+
# Byte-compiled / optimized / DLL files
|
2 |
+
__pycache__/
|
3 |
+
*.py[cod]
|
4 |
+
*$py.class
|
5 |
+
*.so
|
6 |
+
chroma_db/
|
7 |
+
|
8 |
+
# Distribution / packaging
|
9 |
+
.Python
|
10 |
+
build/
|
11 |
+
hf_agents_venv/
|
12 |
+
hf_agents_assignment/hf_agents_venv/
|
13 |
+
develop-eggs/
|
14 |
+
dist/
|
15 |
+
downloads/
|
16 |
+
eggs/
|
17 |
+
.eggs/
|
18 |
+
lib/
|
19 |
+
lib64/
|
20 |
+
parts/
|
21 |
+
sdist/
|
22 |
+
var/
|
23 |
+
wheels/
|
24 |
+
*.egg-info/
|
25 |
+
.installed.cfg
|
26 |
+
*.egg
|
27 |
+
|
28 |
+
# Virtual environments
|
29 |
+
venv/
|
30 |
+
ENV/
|
31 |
+
env/
|
32 |
+
.env
|
33 |
+
.venv
|
34 |
+
env.bak/
|
35 |
+
venv.bak/
|
36 |
+
.python-version
|
37 |
+
|
38 |
+
# Unit test / coverage reports
|
39 |
+
htmlcov/
|
40 |
+
.tox/
|
41 |
+
.nox/
|
42 |
+
.coverage
|
43 |
+
.coverage.*
|
44 |
+
.cache
|
45 |
+
nosetests.xml
|
46 |
+
coverage.xml
|
47 |
+
*.cover
|
48 |
+
.hypothesis/
|
49 |
+
.pytest_cache/
|
50 |
+
pytest-*.xml
|
51 |
+
test.py/
|
52 |
+
# Byte-compiled / optimized / DLL files
|
53 |
+
__pycache__/
|
54 |
+
*.py[cod]
|
55 |
+
*$py.class
|
56 |
+
*.so
|
57 |
+
|
58 |
+
# Distribution / packaging
|
59 |
+
.Python
|
60 |
+
build/
|
61 |
+
hf_agents_venv/
|
62 |
+
hf_agents_assignment/hf_agents_venv/
|
63 |
+
../hf_agents_venv/
|
64 |
+
develop-eggs/
|
65 |
+
dist/
|
66 |
+
downloads/
|
67 |
+
eggs/
|
68 |
+
.eggs/
|
69 |
+
lib/
|
70 |
+
lib64/
|
71 |
+
parts/
|
72 |
+
sdist/
|
73 |
+
var/
|
74 |
+
wheels/
|
75 |
+
*.egg-info/
|
76 |
+
.installed.cfg
|
77 |
+
*.egg
|
78 |
+
|
79 |
+
# Virtual environments
|
80 |
+
venv/
|
81 |
+
ENV/
|
82 |
+
env/
|
83 |
+
.env
|
84 |
+
.venv
|
85 |
+
env.bak/
|
86 |
+
venv.bak/
|
87 |
+
.python-version
|
88 |
+
|
89 |
+
# Unit test / coverage reports
|
90 |
+
htmlcov/
|
91 |
+
.tox/
|
92 |
+
.nox/
|
93 |
+
.coverage
|
94 |
+
.coverage.*
|
95 |
+
.cache
|
96 |
+
nosetests.xml
|
97 |
+
coverage.xml
|
98 |
+
*.cover
|
99 |
+
.hypothesis/
|
100 |
+
.pytest_cache/
|
101 |
+
pytest-*.xml
|
102 |
+
test.py/
|
103 |
+
|
104 |
+
# Jupyter Notebook
|
105 |
+
.ipynb_checkpoints
|
106 |
+
agents.ipynb
|
107 |
+
|
108 |
+
# IPython
|
109 |
+
profile_default/
|
110 |
+
ipython_config.py
|
111 |
+
|
112 |
+
# Logs
|
113 |
+
*.log
|
114 |
+
logs/
|
115 |
+
log/
|
116 |
+
|
117 |
+
# IDE specific files
|
118 |
+
.idea/
|
119 |
+
.vscode/
|
120 |
+
*.swp
|
121 |
+
*.swo
|
122 |
+
*~
|
123 |
+
.DS_Store
|
124 |
+
.project
|
125 |
+
.pydevproject
|
126 |
+
.settings/
|
127 |
+
.vs/
|
128 |
+
*.sublime-project
|
129 |
+
*.sublime-workspace
|
130 |
+
|
131 |
+
# Database
|
132 |
+
*.db
|
133 |
+
*.rdb
|
134 |
+
*.sqlite
|
135 |
+
*.sqlite3
|
136 |
+
|
137 |
+
# Environment variables
|
138 |
+
.env
|
139 |
+
.env.local
|
140 |
+
.env.development.local
|
141 |
+
.env.test.local
|
142 |
+
.env.production.local
|
143 |
+
|
144 |
+
# macOS specific
|
145 |
+
.DS_Store
|
146 |
+
.AppleDouble
|
147 |
+
.LSOverride
|
148 |
+
Icon
|
149 |
+
._*
|
150 |
+
.DocumentRevisions-V100
|
151 |
+
.fseventsd
|
152 |
+
.Spotlight-V100
|
153 |
+
.TemporaryItems
|
154 |
+
.Trashes
|
155 |
+
.VolumeIcon.icns
|
156 |
+
.com.apple.timemachine.donotpresent
|
157 |
+
|
158 |
+
# AI/model files
|
159 |
+
*.h5
|
160 |
+
*.pb
|
161 |
+
*.onnx
|
162 |
+
*.tflite
|
163 |
+
*.pt
|
164 |
+
*.pth
|
165 |
+
*.weights
|
166 |
+
|
167 |
+
# Temporary files
|
168 |
+
tmp/
|
169 |
+
temp/
|
170 |
+
.tmp
|
171 |
+
*.tmp
|
172 |
+
# Jupyter Notebook
|
173 |
+
.ipynb_checkpoints
|
174 |
+
agents.ipynb
|
175 |
+
|
176 |
+
# IPython
|
177 |
+
profile_default/
|
178 |
+
ipython_config.py
|
179 |
+
test.py
|
180 |
+
|
181 |
+
# Logs
|
182 |
+
*.log
|
183 |
+
logs/
|
184 |
+
log/
|
185 |
+
|
186 |
+
# IDE specific files
|
187 |
+
.idea/
|
188 |
+
.vscode/
|
189 |
+
*.swp
|
190 |
+
*.swo
|
191 |
+
*~
|
192 |
+
.DS_Store
|
193 |
+
.project
|
194 |
+
.pydevproject
|
195 |
+
.settings/
|
196 |
+
.vs/
|
197 |
+
*.sublime-project
|
198 |
+
*.sublime-workspace
|
199 |
+
|
200 |
+
# Database
|
201 |
+
*.db
|
202 |
+
*.rdb
|
203 |
+
*.sqlite
|
204 |
+
*.sqlite3
|
205 |
+
|
206 |
+
# Environment variables
|
207 |
+
.env
|
208 |
+
.env.local
|
209 |
+
.env.development.local
|
210 |
+
.env.test.local
|
211 |
+
.env.production.local
|
212 |
+
|
213 |
+
# macOS specific
|
214 |
+
.DS_Store
|
215 |
+
.AppleDouble
|
216 |
+
.LSOverride
|
217 |
+
Icon
|
218 |
+
._*
|
219 |
+
.DocumentRevisions-V100
|
220 |
+
.fseventsd
|
221 |
+
.Spotlight-V100
|
222 |
+
.TemporaryItems
|
223 |
+
.Trashes
|
224 |
+
.VolumeIcon.icns
|
225 |
+
.com.apple.timemachine.donotpresent
|
226 |
+
|
227 |
+
# AI/model files
|
228 |
+
*.h5
|
229 |
+
*.pb
|
230 |
+
*.onnx
|
231 |
+
*.tflite
|
232 |
+
*.pt
|
233 |
+
*.pth
|
234 |
+
*.weights
|
235 |
+
|
236 |
+
# Temporary files
|
237 |
+
tmp/
|
238 |
+
temp/
|
239 |
+
.tmp
|
240 |
+
*.tmp
|
241 |
+
|
242 |
chroma_db/*.sqlite3
|