Dan Walsh commited on
Commit
d7a2753
·
1 Parent(s): 77a88ff

Add .gitignore and remove __pycache__ files from tracking

Browse files
.gitignore ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python cache files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ .pytest_cache/
6
+
7
+ # Virtual environments
8
+ venv/
9
+ env/
10
+ ENV/
11
+ .env
12
+
13
+ # Distribution / packaging
14
+ dist/
15
+ build/
16
+ *.egg-info/
17
+
18
+ # Local development settings
19
+ .env.local
20
+ .env.development.local
21
+ .env.test.local
22
+ .env.production.local
23
+
24
+ # IDE specific files
25
+ .idea/
26
+ .vscode/
27
+ *.swp
28
+ *.swo
29
+
30
+ # OS specific files
31
+ .DS_Store
32
+ Thumbs.db
33
+
34
+ # Hugging Face cache
35
+ .huggingface/
36
+ huggingface_cache/
37
+
38
+ # Model files (if needed)
39
+ *.pt
40
+ *.bin
41
+ *.model
42
+
43
+ # Logs
44
+ *.log
45
+ logs/
46
+
47
+ # Coverage reports
48
+ .coverage
49
+ htmlcov/
50
+ coverage.xml
__pycache__/main.cpython-311.pyc DELETED
Binary file (1.36 kB)
 
app/api/__pycache__/async_routes.cpython-311.pyc DELETED
Binary file (2.57 kB)
 
app/api/__pycache__/routes.cpython-311.pyc DELETED
Binary file (6.78 kB)
 
app/services/__pycache__/cache.cpython-311.pyc DELETED
Binary file (977 Bytes)
 
app/services/__pycache__/model_cache.cpython-311.pyc DELETED
Binary file (945 Bytes)
 
app/services/__pycache__/summariser.cpython-311.pyc DELETED
Binary file (10.8 kB)
 
app/services/__pycache__/summarizer.cpython-311.pyc DELETED
Binary file (1.77 kB)
 
app/services/__pycache__/url_extractor.cpython-311.pyc DELETED
Binary file (5.82 kB)
 
tests/__pycache__/__init__.cpython-311.pyc DELETED
Binary file (168 Bytes)
 
tests/__pycache__/conftest.cpython-311-pytest-8.3.5.pyc DELETED
Binary file (664 Bytes)
 
tests/__pycache__/test_api.cpython-311-pytest-8.3.5.pyc DELETED
Binary file (3.91 kB)
 
tests/__pycache__/test_summariser.cpython-311-pytest-8.3.5.pyc DELETED
Binary file (6.99 kB)