Skip to content

Commit 85c1d4d

Browse files
committed
remove cached files
1 parent 8e82565 commit 85c1d4d

22 files changed

+75
-0
lines changed

.gitignore

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,77 @@
1+
# Python
2+
*.pyc
3+
*.pyo
4+
*.pyd
5+
__pycache__/
6+
*.env
7+
.venv/
8+
env/
9+
venv/
10+
ENV/
11+
*.egg-info/
12+
*.egg
13+
pip-log.txt
14+
15+
# Flask
16+
instance/
17+
*.sqlite3
18+
*.db
19+
*.bak
20+
instance/config.py
21+
instance/*.secret
22+
23+
# Environment Variables
124
.env
25+
.env.*
26+
27+
# Logs
28+
logs/
29+
*.log
30+
*.out
31+
*.err
32+
33+
# Pytest and Coverage
34+
.pytest_cache/
35+
.coverage
36+
.tox/
37+
nosetests.xml
38+
coverage.xml
39+
*.cover
40+
.cache
41+
42+
# IDEs and Editors
43+
.vscode/
44+
.idea/.env
245
.vercel
46+
47+
# ignore the .pyc files
48+
*.pyc
49+
50+
dist/
51+
# Node (if using npm/yarn for assets)
52+
node_modules/
53+
*.lock
54+
55+
# Static assets (if generated)
56+
static/
57+
dist/
58+
build/
59+
60+
# Docker
61+
*.pid
62+
docker-compose.override.yml
63+
64+
# Heroku
65+
*.buildpacks
66+
*.env.local
67+
*.env.production
68+
*.env.*.local
69+
70+
# Miscellaneous
71+
*.bak
72+
*.tmp
73+
*.log.*
74+
Thumbs.db
75+
76+
# Vercel
77+
.vercel
-92 Bytes
Binary file not shown.
-7 Bytes
Binary file not shown.

api/__pycache__/graph.cpython-312.pyc

245 Bytes
Binary file not shown.

api/__pycache__/info.cpython-312.pyc

-434 Bytes
Binary file not shown.

api/__pycache__/llm.cpython-312.pyc

469 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-7 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)