Spaces:
Running
Running
File size: 868 Bytes
70a6422 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
#!/bin/sh
#
# SPDX-FileCopyrightText: Hadad <[email protected]>
# SPDX-License-Identifier: Apache-2.0
#
echo "Installing required Python packages..."
pip install gradio_client rich --upgrade
echo "Installation complete."
echo ""
echo ""
echo "Downloading the J.A.R.V.I.S. script..."
wget https://huggingface.co/spaces/hadadrjt/ai/raw/main/assets/bin/ai
echo "Download complete."
echo ""
echo ""
echo "Setting executable permission..."
chmod a+x ai
echo "Permission set."
echo ""
echo ""
echo "Removing installer script..."
rm install.sh
echo "Done."
echo ""
echo ""
echo "To send a regular message:"
echo "./ai Your message here"
echo ""
echo "To use Deep Search mode:"
echo "./ai -d Your message here"
echo ""
echo ""
echo "For more details and advanced options, visit:"
echo "https://huggingface.co/spaces/hadadrjt/ai/blob/main/docs/API.md#installations"
echo ""
|