✨ Validated AISSIA interactive mode with real conversations - Claude Sonnet 4 agentic loops working perfectly - espeak-ng TTS integration functional (French voice) - 7 modules + 4 services + 18 tools operational - Tested conversation with tool usage (get_current_time) - 4298 tokens, 2 agentic iterations, TTS output 📝 Documentation: - Added docs/PHASE6_VALIDATION.md (complete validation report) - Updated README.md roadmap (Phase 6 complete) 🎉 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
31 lines
780 B
Bash
31 lines
780 B
Bash
#!/bin/bash
|
|
# Test script for AISSIA interactive mode
|
|
|
|
cd "/mnt/e/Users/Alexis Trouvé/Documents/Projets/Aissia"
|
|
|
|
# Load env
|
|
set -a
|
|
source .env
|
|
set +a
|
|
|
|
echo "🧪 Testing AISSIA Interactive Mode"
|
|
echo "===================================="
|
|
echo ""
|
|
echo "Sending test queries to AISSIA..."
|
|
echo ""
|
|
|
|
# Test 1: Simple conversation
|
|
echo "Test 1: Simple greeting"
|
|
echo "Bonjour AISSIA, comment vas-tu ?" | timeout 30 ./build/aissia -i 2>&1 | grep -A 10 "AISSIA:"
|
|
|
|
echo ""
|
|
echo "Test 2: Task query"
|
|
echo "Quelle est ma tâche actuelle ?" | timeout 30 ./build/aissia -i 2>&1 | grep -A 10 "AISSIA:"
|
|
|
|
echo ""
|
|
echo "Test 3: Time query"
|
|
echo "Quelle heure est-il ?" | timeout 30 ./build/aissia -i 2>&1 | grep -A 10 "AISSIA:"
|
|
|
|
echo ""
|
|
echo "✅ Tests completed"
|