Skip to content

whisper

Usage:

console $ whisper [OPTIONS] COMMAND [ARGS]...

Options:

  • --help: Show this message and exit.

Commands:

  • ask: The default command that takes a prompt...
  • config

whisper ask

The default command that takes a prompt and optional parameters to ask a question using Whisper.

Usage:

console $ whisper ask [OPTIONS][PROMPT]

Arguments:

  • [PROMPT]: The question you want to ask Whisper [default: (dynamic)]

Options:

  • -p, --provider TEXT: The provider to be used (openai, anthropic, etc)
  • -s, --system TEXT: The system prompt to be used. This can also be piped into Whisper...
  • -m, --model TEXT: The model that Whisper should use
  • -t, --theme TEXT: The theme that should be used for the output [default: solarized-dark]
  • --copy / --no-copy: Copy the output to the clipboard
  • -v, --verbose: Increase verbosity level [default: 0]
  • --help: Show this message and exit.

whisper config

Usage:

console $ whisper config [OPTIONS] COMMAND [ARGS]...

Options:

  • --help: Show this message and exit.

Commands:

  • get: Get the current configuration for Whisper.
  • init: Initializes the configuration for Whisper,...
  • set: Initialize the configuration for Whisper.
  • show: Show the current configuration for Whisper.
  • themes: Prints a list of available syntax...

whisper config get

Get the current configuration for Whisper.

Usage:

console $ whisper config get [OPTIONS] KEY

Arguments:

  • KEY: The key to get the value for. Supports dot notation. e.g. 'openai.api_key' [required]

Options:

  • --help: Show this message and exit.

whisper config init

Initializes the configuration for Whisper, saving API keys to a local file.

Usage:

console $ whisper config init [OPTIONS]

Options:

  • --openai-key TEXT: The OpenAI API key to use
  • --anthropic-key TEXT: The Anthropic API key to use
  • --azureopenai-key TEXT: The Azure OpenAI API key to use
  • --mistral-key TEXT: The Mistral API key to use
  • --fireworks-key TEXT: The Fireworks API key to use
  • --show / --no-show: Show the configuration [default: show]
  • --help: Show this message and exit.

whisper config set

Initialize the configuration for Whisper.

Usage:

console $ whisper config set [OPTIONS] KEY VALUE

Arguments:

  • KEY: The key to set the value for. Supports dot notation. e.g. 'openai.api_key' [required]
  • VALUE: The value to set the key to. [required]

Options:

  • --help: Show this message and exit.

whisper config show

Show the current configuration for Whisper.

Usage:

console $ whisper config show [OPTIONS]

Options:

  • --help: Show this message and exit.

whisper config themes

Prints a list of available syntax highlighting themes from Pygments.

Usage:

console $ whisper config themes [OPTIONS]

Options:

  • --help: Show this message and exit.