-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathrequirements.txt
More file actions
92 lines (77 loc) · 2.2 KB
/
requirements.txt
File metadata and controls
92 lines (77 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# ============================================================================
# AI-Driven Zero-Click Exploit Deployment Framework - Requirements
# Python 3.8+ required
# ============================================================================
# --- Web Framework & ASGI Server (Updated) ---
fastapi==0.115.0
uvicorn[standard]==0.32.0
gunicorn==23.0.0 # Updated from 22.0.0 (PR #168 - Security)
flask==3.0.0
flask-sqlalchemy==3.1.1
flask-migrate==4.0.5
aiohttp==3.10.11
python-dotenv==1.0.0
# --- ML/DL Frameworks (Updated) ---
torch==2.6.0 # Updated from 2.2.0 (PR #169)
torchaudio==2.6.0 # Updated to match torch version
pytorch-lightning==2.4.0 # Updated from 1.9.0 (PR #167)
transformers==4.50.0 # Updated from 4.38.0 (PR #170)
accelerate>=0.20.0
einops==0.8.0
sentencepiece==0.2.0
safetensors==0.4.0
bitsandbytes==0.43.0
timm==1.0.0
# --- NLP & Vector Search ---
tokenizers==0.19.0
faiss-cpu==1.8.0
datasets==2.14.0 # Successor to 'nlp' package
# --- Hugging Face Ecosystem ---
huggingface-hub==0.24.0
webdataset==0.2.100
omegaconf==2.3.0
# --- Data Processing ---
numpy==1.26.0 # Updated for compatibility
pandas==2.1.0
scipy==1.12.0
scikit-learn==1.5.0
scikit-image==0.22.0
Pillow==10.3.0
pydub==0.25.1
ffmpeg-python==0.2.0
# --- Security & Cryptography (Updated) ---
cryptography==44.0.1 # Updated from 43.0.1 (PR #165 - Security)
# --- Database & Caching ---
redis==5.0.0
# --- GUI Frameworks ---
panel==1.3.0
gradio==5.11.0
streamlit==1.40.0
# --- Data Visualization ---
matplotlib==3.8.0
seaborn==0.13.0
plotly==5.18.0
# --- Web Scraping & HTTP ---
requests==2.32.2
beautifulsoup4==4.12.0
shodan==1.31.0 # Updated
python-nmap==0.7.1
web3==6.0.0 # Updated from 5.x for security
# --- Utilities ---
tqdm==4.66.3
dill==0.3.8
setproctitle==1.3.3
typing-extensions==4.12.0
psutil==5.9.8
validators==0.34.0
PyYAML==6.0.1 # Correct package name (was 'yaml')
# --- Documentation ---
numpydoc==1.7.0
# --- Development Tools ---
pip-tools==7.0.0
# --- Agent Framework ---
agent-zero==0.1.0
# --- Note on removed packages ---
# The following were removed because they are Python standard library modules:
# subprocess, re, logging, json, os, tkinter, dataclasses
# Do NOT install these via pip - they are built into Python