Spaces:
Running
Running
Introduce UltimaX Intelligence CLI
#30
pinned
by
hdrjt
- opened
UltimaX Intelligence CLI is an extension of the UltimaX Intelligence project, previously registered on Pollinations. This command-line interface (CLI) tool is designed to simplify developers' access to AI models directly from their local terminals.
Built on top of the Pollinations Python SDK, this lightweight script enables direct interaction with GPT-4.1 (Nano) within the terminal. It supports both streaming and non-streaming modes for flexible usage.
The CLI is compatible with Linux, MacOS, Windows (via WSL), and Termux environments.
Installation
Ensure Python 3 is installed on your system before proceeding. Then, follow these steps to install the required dependencies and the CLI tool:
# Download the installer script
wget https://huggingface.co/spaces/umint/cli/raw/main/assets/bin/installer.sh
# Set proper permission
chmod a+x installer.sh
# Run the installer script
./installer.sh
Example Usage
# Streaming (default)
./ai Tell me about yourself.
# Non-streaming mode
./ai Tell me about yourself. --no-stream
hdrjt
pinned discussion