agentscope / start.sh
ghostdrive1's picture
Upload folder using huggingface_hub (part 2)
0c4dbe2 verified
Raw
History Blame Contribute Delete
244 Bytes
#!/bin/bash
if [ -n "$REMOTE_REDIS_WS_URL" ]; then
echo "Connecting to remote Redis via WebSocket Proxy..."
python local_ws_proxy.py &
else
echo "Starting local Redis server..."
redis-server --daemonize yes
fi
python hf_app.py