--- name: cli-chat description: Send chat completions, stream responses, and start an interactive REPL session from the CLI. Supports all OmniRoute providers, combo routing, and system prompt configuration. --- ## Overview Send chat completions, stream responses, and start an interactive REPL session from the CLI. Supports all OmniRoute providers, combo routing, and system prompt configuration. ## Quick install ```bash npm install -g omniroute # or: npx omniroute omniroute --version ``` ## Subcommands ### `chat [prompt]` **Flags:** - `--file ` - `--stdin` - `-s, --system ` - `-m, --model ` - `--max-tokens ` - `--temperature ` - `--top-p

` - `--reasoning-effort ` - `--thinking-budget ` - `--combo ` - `--responses-api` - `--stream` - `--no-history` **Example:** ```bash omniroute chat [prompt] ``` ### `repl` **Flags:** - `-m, --model ` - `--combo ` - `-s, --system ` - `--resume ` **Example:** ```bash omniroute repl ``` ### `stream [prompt]` **Flags:** - `--file ` - `--stdin` - `-m, --model ` - `-s, --system ` - `--combo ` - `--max-tokens ` - `--responses-api` - `--raw` - `--debug` - `--save ` **Example:** ```bash omniroute stream [prompt] ```