Spaces:
Runtime error
Runtime error
fikird
commited on
Commit
·
e6327ee
1
Parent(s):
a3440c5
fix: Optimize dependencies to resolve build timeout
Browse files- Remove heavy ML packages
- Remove image processing dependencies
- Focus on core OSINT functionality
- Keep only essential packages
- requirements.txt +1 -11
requirements.txt
CHANGED
@@ -1,11 +1,8 @@
|
|
1 |
# Core Dependencies
|
2 |
python-dotenv>=1.0.0
|
3 |
langchain>=0.0.200
|
4 |
-
transformers>=4.30.2
|
5 |
sentence-transformers>=2.2.2
|
6 |
faiss-cpu>=1.7.4
|
7 |
-
torch>=2.0.1 --index-url https://download.pytorch.org/whl/cpu
|
8 |
-
accelerate>=0.21.0
|
9 |
|
10 |
# Web Scraping & Search
|
11 |
duckduckgo-search>=3.8.3
|
@@ -16,14 +13,8 @@ tenacity>=8.2.2
|
|
16 |
aiohttp>=3.8.5
|
17 |
httpx>=0.24.1
|
18 |
|
19 |
-
# Image Processing
|
20 |
-
Pillow>=10.0.0
|
21 |
-
face-recognition>=1.3.0
|
22 |
-
opencv-python-headless>=4.8.0
|
23 |
-
|
24 |
# OSINT Tools
|
25 |
holehe>=1.61
|
26 |
-
sherlock-project>=0.14.0
|
27 |
python-whois>=0.8.0
|
28 |
geopy>=2.3.0
|
29 |
|
@@ -35,5 +26,4 @@ markdown>=3.4.3
|
|
35 |
python-dateutil>=2.8.2
|
36 |
tqdm>=4.65.0
|
37 |
validators>=0.20.0
|
38 |
-
urllib3>=2.0.4
|
39 |
-
certifi>=2023.7.22
|
|
|
1 |
# Core Dependencies
|
2 |
python-dotenv>=1.0.0
|
3 |
langchain>=0.0.200
|
|
|
4 |
sentence-transformers>=2.2.2
|
5 |
faiss-cpu>=1.7.4
|
|
|
|
|
6 |
|
7 |
# Web Scraping & Search
|
8 |
duckduckgo-search>=3.8.3
|
|
|
13 |
aiohttp>=3.8.5
|
14 |
httpx>=0.24.1
|
15 |
|
|
|
|
|
|
|
|
|
|
|
16 |
# OSINT Tools
|
17 |
holehe>=1.61
|
|
|
18 |
python-whois>=0.8.0
|
19 |
geopy>=2.3.0
|
20 |
|
|
|
26 |
python-dateutil>=2.8.2
|
27 |
tqdm>=4.65.0
|
28 |
validators>=0.20.0
|
29 |
+
urllib3>=2.0.4
|
|