File size: 722 Bytes
5d9ca4f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
#!/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 ""