fix: multiple bug fixes - remove unused imports, fix typo, fix dataset paths, add ai command fallback

This commit is contained in:
Christian Medina
2026-06-30 18:48:46 -04:00
parent 75aeeeb20a
commit 97004261f5
5 changed files with 20017 additions and 8 deletions

View File

@@ -12,8 +12,12 @@ echo ""
# Unload AI model to free VRAM
echo "=== Unloading AI model ==="
ai none
sleep 2
if command -v ai &> /dev/null; then
ai none
sleep 2
else
echo "Warning: 'ai' command not found, skipping AI unload"
fi
# Check Python
if ! command -v python3 &> /dev/null; then