Unlock Raycast AI Features with Zeabur AI Hub

January 11, 2026

In modern workflows, AI has become an incredibly useful assistant. Raycast, a popular productivity tool on macOS, features built-in AI functionality (Raycast AI) that has become many people's first choice.

Currently, besides offering official subscription plans, Raycast also supports Bring Your Own Key (BYOK) functionality, allowing users to choose model sources based on their needs. Additionally, Raycast for Windows has been officially released. Although AI features aren't fully supported yet, Windows users can install and try it out while anticipating future updates. If you want to experience Raycast, you can download it from the Raycast Windows page.

This article will explain how to integrate AI model services provided by Zeabur AI Hub into your Raycast interface using Raycast's Custom AI Providers feature.

What is Raycast AI?

Raycast AI is artificial intelligence functionality integrated into Raycast, primarily including the following aspects:

  • Quick AI: Enter questions directly in the search box and press Tab to quickly get answers.
  • AI Chat: A standalone chat window suitable for in-depth conversations, code debugging, or writing long-form content.
  • AI Commands: Default or custom AI commands, such as "Explain text," "Rewrite tone," or "Translate."
  • AI Extensions: Use @ to tag specific extensions, allowing AI to directly integrate with your other development or productivity tools.

What is Zeabur AI Hub?

Zeabur is a cloud deployment platform, and Zeabur AI Hub is their AI integration service. It has several core advantages:

  1. Diverse Model Selection: Besides GPT-4o and Claude 3.5, it also supports powerful open-source models like DeepSeek and Llama 3.
  2. OpenAI Standard Compatibility: Provides an API interface consistent with OpenAI, allowing almost all software that supports OpenAI API to integrate seamlessly.
  3. Cost-Effective: Uses pay-as-you-go billing without requiring fixed monthly fees, suitable for users seeking flexible usage.

Tutorial: Adding Zeabur AI Hub to Raycast AI

Let's see how to set this up:

Step 1: Get Zeabur API Key

  1. Log in to the Zeabur Console.
  2. Go to the AI Hub page.
  3. Generate a new API Key and copy it for later use.

Step 2: Open Raycast Settings

  1. Open the Raycast search box on your Mac.
  2. Type AI and select AI Raycast Settings.

Raycast AI Settings Option

  1. Scroll to the bottom of the right side of the settings window, find and enable the Custom Providers option.

Enable Custom Providers Option

  1. Then click the Reveal Providers Config button in that section, which will automatically open Finder and locate the configuration folder.

Reveal Providers Config Button

Step 3: Edit the providers.yaml Configuration File

  1. In the opened Finder window, enter the AI folder.
  2. Find the providers.template.yaml file and open it with a text editor (such as VS Code or TextEdit).

providers.template.yaml File Location

  1. Modify the content to the following format (replace YOUR_API_KEY with the key you obtained in Step 1):
providers:
  - id: zeabur_ai_hub
    name: Zeabur AI Hub
    base_url: https://hnd1.aihub.zeabur.ai/ # Alternative San Francisco node: https://sfo1.aihub.zeabur.ai/
    api_keys:
      zeabur-ai-hub-key: YOUR_API_KEY
    models:
      - id: gpt-4o
        name: "GPT-4o"
        context: 200000
        provider: zeabur-ai-hub-key
        abilities:
          temperature:
            supported: true
          vision:
            supported: true
          system_message:
            supported: true
          tools:
            supported: true
      - id: claude-sonnet-4
        name: "Claude Sonnet 4"
        context: 200000
        provider: zeabur-ai-hub-key
        abilities:
          temperature:
            supported: true
          vision:
            supported: true
          system_message:
            supported: true
          tools:
            supported: true
  1. Adding Other Models: If you want to use other models (such as Gemini), you can continue adding below the models list using the following format. To see which models are available in Zeabur AI Hub, visit the Zeabur AI Hub Models page:
- id: <model-name> # e.g., gemini-2.5-pro
  name: "<model-display-name>" # e.g., "Gemini 2.5 Pro"
  context: 200000
  provider: zeabur-ai-hub-key
  abilities:
    temperature:
      supported: true
    vision:
      supported: true
    system_message:
      supported: true
    tools:
      supported: true
  1. Save and Rename: After completing the configuration, rename the file to providers.yaml (remove .template).

Step 4: Select the New Model in Raycast

Return to the Raycast settings page, and you should see Zeabur AI Hub successfully loaded. Now open AI Chat or use Quick AI, and you can directly switch to the models you just configured in the model selection menu.

Zeabur AI Hub Config

Zeabur AI Hub Model Selection in Raycast

Conclusion

By combining Zeabur AI Hub with Raycast, you can not only experience the powerful features of Raycast combined with AI. If you're looking for an alternative to Raycast Pro, this is definitely a solution worth trying!