promptforge / upload.bat
Really-amin's picture
Upload PromptForge v1.0 — Structured prompt generator for Google AI Studio
d70685c verified
raw
history blame contribute delete
615 Bytes
@echo off
echo ================================================
echo PromptForge - Hugging Face Uploader
echo ================================================
echo.
:: Check Python
python --version >nul 2>&1
if errorlevel 1 (
echo [ERROR] Python not found. Install from https://python.org
pause
exit /b 1
)
:: Install huggingface_hub if needed
echo [1/2] Checking huggingface_hub...
pip show huggingface_hub >nul 2>&1
if errorlevel 1 (
echo Installing huggingface_hub...
pip install huggingface_hub
)
:: Run uploader
echo [2/2] Running uploader...
echo.
python upload_to_hf.py
pause