chore: ajouter agent_v0/ au tracking git (était un repo embarqué)

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>
This commit is contained in:
Dom
2026-03-18 11:12:23 +01:00
parent af83552923
commit ae65be2555
82 changed files with 15616 additions and 0 deletions

29
agent_v0/setup_v1.sh Normal file
View File

@@ -0,0 +1,29 @@
#!/bin/bash
# setup_v1.sh - Installation conviviale pour Linux et macOS
echo "--------------------------------------------------"
echo "🚀 Installation de l'Agent V1 - RPA Vision V3"
echo "--------------------------------------------------"
# 1. Création de l'environnement virtuel
if [ ! -d ".venv_v1" ]; then
echo "📦 Création de l'environnement virtuel (.venv_v1)..."
python3 -m venv .venv_v1
fi
# 2. Activation et Installation
source .venv_v1/bin/activate
echo "🛠️ Installation des dépendances (Fibre-ready)..."
pip install --upgrade pip
pip install -r agent_v1/requirements.txt
# 3. Vérifications spécifiques OS
if [[ "$OSTYPE" == "darwin"* ]]; then
echo "🍎 Note macOS : N'oubliez pas d'autoriser 'Accessibilité' et 'Enregistrement d'écran' pour votre terminal."
fi
echo "--------------------------------------------------"
echo "✅ Installation terminée avec succès !"
echo "Pour lancer l'agent, utilisez la commande suivante :"
echo "source .venv_v1/bin/activate && python run_agent_v1.py"
echo "--------------------------------------------------"