Skip to main content
The call command starts the PraisonAI Call server for voice-based AI interactions over phone calls.

Usage

praisonai call [OPTIONS]

Options

OptionDescriptionDefault
--portPort to run the server on8090 (or PORT env var)
--hostHost to bind the server to127.0.0.1
--publicExpose the server via an ngrok tunnelfalse
praisonai call binds to 127.0.0.1 by default — local machine access only. To expose on your LAN, pass --host 0.0.0.0 (a warning will print). To expose publicly, use --public (requires NGROK_AUTH_TOKEN).

Examples

Start locally (default)

praisonai call

Custom port

praisonai call --port 8090

Expose publicly via ngrok

export NGROK_AUTH_TOKEN="your-ngrok-auth-token"
praisonai call --public

Expose on LAN

praisonai call --host 0.0.0.0 --port 8090

See Also