sheikh-llm / deploy.sh
root
Revamp app with chat studio and tooling
94c8770
raw
history blame contribute delete
638 Bytes
#!/bin/bash
echo "πŸš€ Deploying Sheikh LLM Studio to Hugging Face Space..."
if [ ! -f "app.py" ]; then
echo "❌ Error: Must be in sheikh-llm directory"
exit 1
fi
git add .
git commit -m "Deploy v2.0: Chat interface + Model Studio + Tools - $(date '+%Y-%m-%d %H:%M:%S')" || true
git push origin main
echo "βœ… Deployment completed!"
echo "🌐 Space URL: https://huggingface.co/spaces/RecentCoders/sheikh-llm"
echo "⚑ Features deployed:"
echo " - Multi-model chat interface"
echo " - Model creation studio"
echo " - Tool integration (search, code)"
echo " - WebSocket support"
echo " - Training job management"