Install rady
Install the RadMah AI CLI, connect it to your account, and run your first command in under two minutes.
Requirements
- Python 3.10 or newer (
python3 --version). - A RadMah AI API key prefixed with
sl_live_— create one in the dashboard under Settings → API Keys. - An OS credential store: macOS Keychain, Windows Credential Manager, or Linux Secret Service (GNOME Keyring / KWallet). The CLI falls back to
RADMAH_API_KEYif no keyring is available.
1
Install the CLI
Install
pip install radmah-cliℹAccess
SDK + CLI access is provided under agreement. Contact sales@radmah.ai for credentials and installation details.
The install pulls radmah-sdk as a dependency and adds two binaries to your $PATH: rady (friendly default) and radmah (full-brand alias). Both resolve to the same app.
2
Authenticate
rady auth login
# → prompts for your API key (hidden input)
# → verifies against the endpoint
# → persists in your OS credential storePass --api-key to skip the prompt. Pass --base-url when authenticating against an Enterprise Docker deployment (for example, http://radmah.internal:8000).
3
Run your first command
# Show who you are
rady auth whoami
# List recent jobs
rady jobs list
# Generate 100 rows of mock data from an English prompt
rady mock --prompt "100 SaaS accounts with MRR 50-5000" --rows 100
# Or just chat with the AI assistant
rady chatShell completion
Typer ships completion out of the box — install it once per shell:
rady --install-completion
# Restart your shell or source your profileUninstall
rady auth logout # clear the stored key for the default endpoint
pip uninstall radmah-cli radmah-sdk