-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrequirements.txt
More file actions
124 lines (100 loc) · 6.93 KB
/
Copy pathrequirements.txt
File metadata and controls
124 lines (100 loc) · 6.93 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# ── FRIDAY DEPENDENCIES ────────────────────────────────────────────
# Cleaned requirements for Python 3.12-3.14.
# Removed 12 truly unused packages (see REMOVED section at bottom).
# Restored 5 packages that ARE used via lazy/conditional imports.
#
# Install: pip install -r requirements.txt
#
# Optional extras (install separately if needed):
# pip install tensorflow mediapipe # Gesture ML (Python 3.12 only)
# pip install thinq2 # LG ThinQ AC (no 3.13+ wheel)
# ── AI / LLM ──────────────────────────────────────────────────────
google-genai>=1.73.0
openai>=1.30.0
langchain>=1.2.0
langchain-core>=1.3.0
langgraph>=1.1.0
tiktoken>=0.7.0
# ── HUGGING FACE / BENCHMARKS ─────────────────────────────────────
huggingface_hub>=0.24.0
datasets>=2.14.0
sentence-transformers>=3.0.0 # brain/vector_memory.py
# ── AUDIO / VOICE ─────────────────────────────────────────────────
sounddevice>=0.5.0
pycaw>=0.0.5 ; platform_system == 'Windows' # Windows audio control
comtypes>=1.4.0 ; platform_system == 'Windows' # Windows COM (pycaw dep)
# ── IMAGE / SCREEN ────────────────────────────────────────────────
numpy>=2.0.0
pillow>=11.0.0
mss>=10.0.0
opencv-contrib-python>=4.10.0
# ── ML / VISION ───────────────────────────────────────────────────
scikit-learn>=1.3.0
# tensorflow>=2.15.0 # Optional: Python 3.12 only, install separately
# mediapipe>=0.10.0 # Optional: Python 3.12 only, install separately
# ── NETWORKING ────────────────────────────────────────────────────
requests>=2.31.0
urllib3>=2.0.0
httpx>=0.27.0
# ── AUTOMATION ────────────────────────────────────────────────────
pyautogui>=0.9.50
pyperclip>=1.8.0
# ── SYSTEM ────────────────────────────────────────────────────────
psutil>=6.0.0
send2trash>=1.8.0
# ── MATH / PARSING ────────────────────────────────────────────────
sympy>=1.12.0
# ── BROWSER ───────────────────────────────────────────────────────
playwright>=1.45.0
# ── TEXT PROCESSING ───────────────────────────────────────────────
beautifulsoup4>=4.12.0 # web_research.py, code_helper.py, dev_agent.py
lxml>=5.0.0
# ── DATA ANALYSIS ─────────────────────────────────────────────────
polars>=1.0.0
matplotlib>=3.8.0
# ── SCHEDULING ────────────────────────────────────────────────────
apscheduler>=3.10.0
# ── WEB API SERVER ────────────────────────────────────────────────
fastapi>=0.115.0
uvicorn>=0.30.0
pydantic>=2.0.0
# ── CACHING & QUEUE ──────────────────────────────────────────────
redis>=5.0.0
# ── CONSOLE / UI ─────────────────────────────────────────────────
rich>=13.0.0
tqdm>=4.66.0
# ── MCP (Model Context Protocol) ─────────────────────────────────
mcp>=1.0.0
# ── NOTIFICATIONS ─────────────────────────────────────────────────
plyer>=2.1.0
# ── 3D / GESTURE ─────────────────────────────────────────────────
pygame-ce>=2.5.0
PyOpenGL>=3.1.7 # holo_builder.py, holo_globe.py
# ── WEB SEARCH & RESEARCH ────────────────────────────────────────
duckduckgo-search>=6.0.0 # web_search.py
youtube-transcript-api>=0.6.0 # youtube_video.py
# ── AC / APPLIANCE CONTROL ───────────────────────────────────────
broadlink>=0.18.0
pymelcloud>=0.1.0
aircloudy>=0.1.0
# pydaikin>=2.7.0 # EXCLUDED: requires netifaces (C++ build tools)
# thinq2>=0.5.0 # EXCLUDED: no Python 3.13+ wheel
# ── WINDOWS ONLY ─────────────────────────────────────────────────
pywin32>=306 ; platform_system == 'Windows'
pywinauto>=0.6.8 ; platform_system == 'Windows'
win10toast>=0.9 ; platform_system == 'Windows'
pygetwindow>=0.0.9 ; platform_system == 'Windows'
# screen-brightness-control>=0.22.0 ; platform_system == 'Windows' # Not imported
# ══════════════════════════════════════════════════════════════════
# REMOVED (truly unused — zero actual imports anywhere in codebase):
# soundfile, pyttsx3, edge-tts, pydub # Audio libs never imported
# regex # Only stdlib `re` used
# rq # Only in setup.py strings
# watchdog # Only in pip-install mapping
# imutils # Only in setup.py strings
# boto3 # Only in setup.py strings
# azure-core, azure-identity, # Only in setup.py/strings
# azure-storage-blob
# dnspython, cryptography, paramiko # Only in setup.py strings
# folium # Not imported anywhere
# ══════════════════════════════════════════════════════════════════