Suppression du .git embarqué dans agent_v0/ — le code est maintenant tracké normalement dans le repo principal. Inclut : agent_v1 (client), server_v1 (streaming), lea_ui (chat client) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
683 B
Plaintext
17 lines
683 B
Plaintext
# agent_v1/requirements.txt
|
|
mss>=9.0.1 # Capture d'écran haute performance
|
|
pynput>=1.7.7 # Clavier/Souris Cross-plateforme
|
|
Pillow>=10.0.0 # Crops et processing image
|
|
requests>=2.31.0 # Streaming réseau
|
|
psutil>=5.9.0 # Monitoring CPU/RAM
|
|
pystray>=0.19.5 # Icône Tray UI
|
|
plyer>=2.1.0 # Notifications toast natives (remplace PyQt5)
|
|
pywebview>=5.0 # Fenêtre de chat Léa intégrée (Edge WebView2 sur Windows)
|
|
|
|
# Windows spécifique
|
|
pywin32>=306 ; sys_platform == 'win32'
|
|
|
|
# macOS spécifique
|
|
pyobjc-framework-Cocoa>=10.0 ; sys_platform == 'darwin'
|
|
pyobjc-framework-Quartz>=10.0 ; sys_platform == 'darwin'
|