cli / assets /bin /installer.sh
hadadrjt's picture
CLI: Initial.
4a6a19d
raw
history blame contribute delete
697 Bytes
#!/bin/sh
#
# SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
# SPDX-License-Identifier: Apache-2.0
#
echo "Welcome to UltimaX Intelligence CLI"
echo ""
echo ""
echo "Installing required Python packages..."
pip install pollinations pollinations.ai --upgrade
echo "Installation complete."
echo ""
echo ""
echo "Downloading the main script..."
wget https://huggingface.co/spaces/umint/cli/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 installer.sh
echo "Done."
echo ""
echo ""
echo "Example usage:"
echo "./ai Your message here"
echo ""
echo ""