Skip to content

CLI Quickstart

The Parel CLI is the fastest way to use models, inspect usage, manage deployments, and wire Parel into local developer tools.

Terminal window
brew install parel-cloud/tap/parel
Terminal window
parel auth login
parel auth whoami

For non-interactive use:

Terminal window
export PAREL_API_KEY="pk-dev-YOUR_KEY"
parel models list
Terminal window
parel chat "Explain vector search in one paragraph"
parel chat --model gpt-5.4 "Review this release note"
WorkflowCommand
List modelsparel models list
Run a promptparel chat "Hello"
Generate an imageparel images generate --model flux-schnell --prompt "a clean product photo"
Check a taskparel tasks get <task_id>
Inspect usageparel usage summary
Export environmentparel env
Start local proxyparel proxy
Configure Claude Codeparel claude-code init
  • It keeps keys in a local profile.
  • It can inject your profile key into a local OpenAI-compatible proxy.
  • It exposes async task polling without writing polling code.
  • It makes Claude Code setup idempotent with init, status, and uninstall.