daemon03 commited on
Commit
815419a
·
1 Parent(s): edd00ca

modified gitignore

Browse files
Files changed (2) hide show
  1. .gitignore +14 -0
  2. requirements.txt +29 -2
.gitignore ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .env
2
+ venv/*
3
+ __pycache__/
4
+ *.pyc
5
+ .DS_Store
6
+ .idea/
7
+ .vscode/
8
+ logs/
9
+ *.log
10
+ output/
11
+ temp/
12
+ .cache/
13
+ *.sqlite3
14
+ *.db
requirements.txt CHANGED
@@ -1,3 +1,30 @@
1
  altair
2
- pandas
3
- streamlit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  altair
2
+ # Core API clients
3
+ openai==2.8.0
4
+ google-generativeai==0.8.5
5
+ google-genai==1.49.0
6
+ pymongo==4.15.4
7
+
8
+ # Google Cloud Platform
9
+ google-cloud-storage==3.5.0
10
+ google-auth==2.38.0
11
+ google-api-core==2.28.1
12
+
13
+ # Image processing
14
+ Pillow==11.3.0
15
+
16
+ # HTTP clients
17
+ httpx==0.28.1
18
+
19
+ # Retry logic
20
+ tenacity==9.1.2
21
+
22
+ # Environment variables
23
+ python-dotenv==1.2.1
24
+
25
+ # Streamlit (for UI)
26
+ streamlit==1.43.0
27
+
28
+ # Data handling
29
+ numpy==2.0.2
30
+ pandas==2.2.2