AI Modes

WhisperTyping includes several AI modes that enhance your dictation with AI processing. These modes are triggered by saying specific phrases at the start of your dictation. All AI modes can be individually enabled or disabled in Settings → AI Modes.

You can also create your own modes (or edit the built-in ones) — set the prompt, trigger words, context, output, and which AI model to use, including your own provider key (OpenAI, Anthropic, Google or Groq).

Overview

Mode Trigger Phrase Function AI Clipboard Selection
Default (none) Standard transcription No No No
Answer "Answer..." Answer any question Yes Keyword Keyword
Write "Write..." Generate text from prompt Yes Keyword Keyword
Rewrite "Rewrite..." Rewrite selected text Yes Keyword Yes
Reply "Reply..." Generate reply to clipboard Yes Yes No
Run Command "Open..." Execute voice commands Yes Keyword Keyword

Keyword = Access is triggered when you mention that word in your prompt (e.g., "Answer what's in my clipboard" or "Answer based on selection").

Write Mode

Write Mode "Write..."

Generates polished text from your spoken instructions. The text is typed directly where your cursor is. To include clipboard or selection content as context, mention "clipboard" or "selection" in your prompt.

You say: "Write an email to John about rescheduling our meeting to next Tuesday"
Output: A professionally written email ready to send
You say: "Write a thank you note for a birthday gift"
Output: A warm thank you message
You copy: Meeting notes
You say: "Write a summary email based on my clipboard"
Output: A formatted email summarizing the meeting notes
WhisperTyping Write Mode creating a grocery list in OneNote with emojis

Rewrite Mode

Rewrite Mode "Rewrite..."

Rewrites your selected text based on your instructions. Simply select text before activating WhisperTyping—the selection is automatically included. To use clipboard content instead, mention "clipboard" in your prompt.

You select: "the meeting is at 3pm tomorrow"
You say: "Rewrite this more formally"
Output: "The meeting has been scheduled for 3:00 PM tomorrow."
You select: A paragraph of text
You say: "Rewrite to be shorter"
Output: A condensed version of the text
You select: Technical documentation
You say: "Rewrite for a non-technical audience"
Output: The same content in plain language
WhisperTyping Rewrite Mode making an email more formal in Outlook

Answer Mode

Answer Mode "Answer..."

Ask any question and get an AI-powered answer. By default, Answer Mode works like a general-purpose assistant. To include clipboard or selection content, you must mention the word "clipboard" or "selection" in your question.

You say: "Answer how tall is the Eiffel Tower"
Output: The Eiffel Tower is 330 meters (1,083 feet) tall.
You say: "Answer what's 15% of 250"
Output: 37.5
You copy: An error message
You say: "Answer what does this clipboard error mean" (mention "clipboard" to include it)
Output: An explanation of the error and how to fix it
You select: A paragraph of code
You say: "Answer what does this selection do" (mention "selection" to include it)
Output: A clear explanation of the selected code

Reply Mode

Reply Mode "Reply..."

Generates a reply to a message. Your clipboard is always automatically included—just copy the message you want to reply to before activating. The reply is typed directly where your cursor is.

You copy: An email asking about project status
You say: "Reply that the project is on track and will be done next week"
Output: A professional reply addressing the sender's question
You copy: A Slack message from a colleague
You say: "Reply yes sounds good let's do it"
Output: A friendly confirmation message
You copy: A customer complaint
You say: "Reply apologize and offer a refund"
Output: A polite customer service response

Run Command Mode

Run Command Mode "Open..."

Opens applications, websites, or performs complex searches using voice commands. Say "Open" followed by what you want to launch or search for. The AI constructs the appropriate URL or command, enabling powerful one-shot searches.

You say: "Open YouTube"
Result: Opens YouTube in your default browser
You say: "Open calculator"
Result: Launches the Windows Calculator
You say: "Open Airbnb and show me apartments in Barcelona for 3 nights starting December 20th"
Result: Opens Airbnb with the search pre-filled for Barcelona, those dates, and 3 nights
You say: "Open Google Flights and search for flights from New York to Tokyo in January"
Result: Opens Google Flights with the route and dates pre-configured
You say: "Open Amazon and search for wireless headphones under 100 dollars"
Result: Opens Amazon with the search query ready
You say: "Open Google Maps and show me Italian restaurants near me"
Result: Opens Google Maps with a local restaurant search

Custom Modes

You can create your own AI modes — and fully edit the built-in ones — in Settings → AI Modes. Click Add Mode to create one, or Edit on any mode to change it.

What you can configure

Bring your own AI provider

By default, modes use WhisperTyping's included Qwen 3.6 model, with responses capped at around 1,000 words. To use other models, add your own API key under Settings → AI Modes → AI Providers:

ProviderExample models
OpenAIGPT-5.4, GPT-5.4 mini, GPT-5.4 nano, GPT-4.1
AnthropicClaude Opus 4.8, Claude Sonnet 4.6, Claude Haiku 4.5
GoogleGemini 3 Pro, Gemini 3 Flash
GroqLlama 3.3 70B, Qwen3 32B

Each provider page has a "get a key" link. Paste your key, click Test, then Save. Your key is stored encrypted on your PC, used to call the provider directly (their billing applies, and the ~1,000-word cap no longer applies), and is never uploaded to WhisperTyping. You can also enter a custom model id for any model a provider offers.

Run Command: how it works

When a mode's Output is set to Run as a command, the AI turns your dictation into a Windows command and runs it. The command has two parts:

A few examples:

You saycommandarguments
"Open YouTube"https://youtube.com(blank)
"Search Google for noise-cancelling headphones"https://www.google.com/search?q=noise-cancelling+headphones(blank)
"Open the calculator"calc.exe(blank)
"Open Notepad"notepad.exe(blank)
"Open the WhisperTyping site in Chrome"chrome.exehttps://whispertyping.com
"Open my downloads folder"explorer.exe%USERPROFILE%\Downloads
"Run my backup tool"C:\Tools\Backup\backup.exe--full
"Open sound settings"controlmmsys.cpl

Building your own Run Command mode

If you create your own Run Command mode, your prompt must instruct the AI to reply with only a JSON object containing those two properties — command and arguments. Nothing else, no explanation. It should look exactly like this:

{
  "command": "https://youtube.com",
  "arguments": ""
}

A few more examples of the JSON the AI should return:

// open the calculator
{ "command": "calc.exe", "arguments": "" }

// open the WhisperTyping site in Chrome
{ "command": "chrome.exe", "arguments": "https://whispertyping.com" }

// open the downloads folder
{ "command": "explorer.exe", "arguments": "%USERPROFILE%\\Downloads" }

// run a custom program by full path, with arguments
{ "command": "C:\\Tools\\Backup\\backup.exe", "arguments": "--full" }

For a website, put the complete URL (including any query string) in command and leave arguments empty.

Because the result is executed on your machine, only use Run Command with prompts you trust.

Need help with AI Modes?

Have questions about AI Modes? Send us a message and we'll help you out.