ai / assets /bin /install.sh
hadadrjt's picture
ai: Enable API for Next-Gen!
5d9ca4f
raw
history blame contribute delete
722 Bytes
#!/bin/sh
#
# SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
# 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 /dp Your message here"
echo ""
echo ""