#!/bin/sh # # SPDX-FileCopyrightText: Hadad # 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 ""