Raycast Manual
Raycast Manual
Raycast AI

Raycast AI

icon
Whilst Raycast for Windows is in beta, users will receive complimentary access to AI features using the GPT-5 mini model. Raycast Pro and Advanced AI subscribers have access to all models included with their respective plans. * Pro usage limits apply to the complimentary GPT-5 mini model access.
icon
Read our AI Privacy and Security statement.

Quick AI

Overview

Quick AI is the fastest way to get answers to your questions directly within Raycast.

  • From root search, just hit Tab to open the Quick AI view.
  • Type you prompt and hit Enter to submit.
  • Alternatively, you can type your question in root search and hit Tab to send it to Quick AI
image
image
image

Follow-up actions

After getting an answer, you can use the primary action (hitting Enter) to paste the response into an active input field. You can select your preferred primary action (Paste to Active App or Copy to Clipboard) in the AI section of Raycast Settings.

You can also continue the conversation and ask follow-up questions in the same window.

In the Actions Menu (Ctrl K) you can find additional options, also accessible directly through the following hotkeys:

  • Paste Response Enter
  • Copy Response Ctrl Enter
  • New Question Ctrl N
  • Go to Previous Message Ctrl ↑
  • Go to Next Message Ctrl ↓
  • Go to Previous Chat Ctrl [
  • Go to Next Chat Ctrl ]
  • Delete Message Ctrl Alt X
  • Delete Chat Ctrl X
  • Delete All Chats Ctrl Shift X
image

Switching between models

During the Beta phase, we are giving all Windows testers access to AI models available in our Pro subscription to choose from in Quick AI. Just go to the AI tab in Raycast Settings using Ctrl , and select one from the dropdown. Or you can enable this in settings as shown above or using that Change Model actions in Quick AI.

image
image

You can change between models mid-chat, or regenerate a response with a different model using the Ctrl K menu.

image

Auto Model

To make it easier to choose the best model, we’ve introduced an experiment feature called Raycast Auto model that, under the hood, selects the best provider and model for your request: it chooses a fast model for simple requests, a reasoning model for sophisticated tasks, the best coding model for programming requests, or a web-search model if it requires access to real-time data. We’re currently testing this (hence, experimental!) and will be fine tuning it as we receive your feedback. Please let us know how it’s going in our slack community channel -  #ai-experiments.

image

Additional Settings

In the AI section of Raycast Settings, you can also:

  • Completely disable AI in Raycast
  • Choose the default Primary Action
  • Select the time after which Quick AI starts a new chat instead of bring up the previous one
image

AI Commands

AI Commands help you automate repetitive work in seconds. Pick a pre-made command like “Fix Spelling and Grammar” or create your own with a simple text prompt. Use these to transform text, update or modify data, generate code documentation, or polish UX copy. Check our Prompt Library for some inspiration.

1. Built-in: Explain Words

image
  1. Select the word “philosophy”
  2. Open Raycast and search for “Explain This in Simple Terms”
  3. Raycast AI responds with the definition of the word “philosophy”

2. Built-in: Improved Writing

image
  1. Select a sentence, paragraph, or more text
  2. Open Raycast and search for “Improve Writing”
  3. Raycast AI responds with a text improved for grammar and style

3. Customize a built-in AI Command

image

To add a customized AI Command to your Raycast Root Search, continue with these steps:

  1. Go to “Search AI Commands” and find for example “Improve Writing”
  2. Press Ctrl D to duplicate the AI Command
  3. Give it a new title, for example “Improve Writing in My Personal Style”, and change the icon to something that fits, like Person Lines
  4. Tweak the Prompt, and define some rules that describe how you tend to write, for example: Break up overly long sentences.
  5. Press Ctrl ↵ to update the AI Command
  6. Now you can use the AI Command from your Root Search

4. Custom AI Command: Translate Text

image

Follow the steps to create a new AI Command that translates selected text to any language:

  1. Open Raycast, search for “Create AI Command”
  2. Give it a Title like “Translate Selected Text to English”
  3. Type in the Prompt field “Translate {selection} to English” (or any other language) and hit Ctrl ↵ to save
  4. When you execute the AI Command, Raycast instantly shows a window with the translation of the selected text

5. Custom AI Command: Translate Text to Any Language

image

Follow the steps to create a new AI Command that translates selected text to any language:

  1. Create a new AI Command, or edit the one we just made by finding it and hitting Ctrl E.
  2. Name the Title something like: “Translate Selected Text to…”
  3. Change the prompt to use an Argument with a dynamic placeholder. Example: Translate {selection} to {argument name="Language"}
  4. Press Ctrl ↵ to update the AI Command
  5. Now any time you execute the AI Command, you can define the language you want.

Dynamic Placeholders can be even more powerful. Learn more about them in the next section.

Placeholders

You can make your AI Commands dynamic with dynamic placeholders.

Import AI Commands

You can import AI Commands from a JSON file by searching for the “Import AI Commands” command, and then opening it to select a JSON file.

image

JSON Format

The JSON format should be an array of AI commands with properties as described below:

Property
Title
Type
Required?
title
Command title
string
✅
prompt
Command prompt
string
✅
creativity
Command creativity (= temperature)
"none" | "low" | "medium" | "high" | "maximum"
❌
icon
Command icon: kebab-case. (e.g AddPerson becomes add-person)
string
❌
Example of “ai-commands.json” file

After the import is completed, you will receive feedback and see how many AI commands were added.

image

What’s coming next?

If you’re familiar with Raycast on macOS, you know that we have many other advanced features, such as AI Chat, AI Extensions, AI Presets, and more.

This is just the first step, and we will gradually add more of these capabilities to Windows as we go along. To find out more about the full capabilities of Raycast AI, visit our website.

SlackXInstagram
[
   {
      "title": "Write 10 Alternatives",
      "prompt": "Give me 10 alternative versions of the text. Ensure that the alternatives are all distinct from one another.\n\nText:\n\nAlternatives:",
      "creativity": "high",
      "icon": "shuffle"
   },
   {
      "title": "Find Synonyms",
      "prompt": "Find synonyms for the word {selection} and format the output as a list. Words should exist. Do not write any explanations. Do not include the original word in the list. The list should not have any duplicates.",
      "creativity": "medium",
      "icon": "text"
   }
]