@echo off echo. echo 🚀 Pushing Gemma-2 Multimodal Chat to Hugging Face Spaces echo. REM Check if Python is installed python --version >nul 2>&1 if %ERRORLEVEL% NEQ 0 ( echo ❌ Python is not installed or not in PATH. Please install Python and try again. exit /b 1 ) REM Run the Python script python push_to_huggingface.py if %ERRORLEVEL% EQU 0 ( echo. echo ✅ Deployment script completed successfully! echo. echo Press any key to exit... pause >nul ) else ( echo. echo ❌ Deployment script encountered an error. echo. echo Press any key to exit... pause >nul )