LolMultiAgent / push.sh
Ralitza Mondal
Add multi-agent coach system (FAISS files to be uploaded separately)
aaa201d
#!/bin/bash
# Quick push script for Hugging Face Space
echo "๐Ÿš€ Pushing LoL Multi-Agent Coach to Hugging Face..."
echo ""
cd /Users/ralitzamondal/Documents/LolMultiAgent
# Check git status
echo "๐Ÿ“‹ Current status:"
git status
echo ""
# Ask user to confirm
read -p "Ready to push? (y/n) " -n 1 -r
echo ""
if [[ $REPLY =~ ^[Yy]$ ]]
then
echo "๐Ÿ” Pushing to Hugging Face..."
echo " (You may need to enter your HF token)"
git push
if [ $? -eq 0 ]; then
echo ""
echo "โœ… SUCCESS! Your Space is updating!"
echo "๐ŸŒ Visit: https://huggingface.co/spaces/Ralitza1/LolMultiAgent"
echo ""
echo "โณ Wait 5-10 minutes for build to complete"
echo "๐Ÿ”‘ Don't forget to add API keys in Space Settings!"
else
echo ""
echo "โŒ Push failed. You may need to:"
echo " 1. Get your HF token: https://huggingface.co/settings/tokens"
echo " 2. Run: huggingface-cli login"
echo " 3. Try again"
fi
else
echo "โŒ Push cancelled"
fi