Skip to content

Getting Started

Installation

Download the latest installer from the Download page or the GitHub Releases.

macOS

ChipFile
Apple Silicon (M1 / M2 / M3 / M4)AQBot_x.x.x_aarch64.dmg
IntelAQBot_x.x.x_x64.dmg
  1. Open the .dmg and drag AQBot into the Applications folder.
  2. Launch AQBot. If macOS blocks the app, go to System Settings → Privacy & Security and click Open Anyway.

macOS: "App Is Damaged" or "Cannot Verify Developer"

If you see either of these messages, open Terminal and run:

bash
xattr -c /Applications/AQBot.app

Then launch the app again. This removes the quarantine flag that macOS applies to unsigned downloads.

Windows

ArchitectureFile
x64 (most PCs)AQBot_x.x.x_x64-setup.exe
ARM64AQBot_x.x.x_arm64-setup.exe

Run the installer and follow the wizard. Launch AQBot from the Start Menu or the desktop shortcut.

Linux

FormatArchitectureFile
Debian / Ubuntux64AQBot_x.x.x_amd64.deb
Debian / UbuntuARM64AQBot_x.x.x_arm64.deb
Fedora / openSUSEx64AQBot_x.x.x_x86_64.rpm
Fedora / openSUSEARM64AQBot_x.x.x_aarch64.rpm
Any distrox64AQBot_x.x.x_amd64.AppImage
Any distroARM64AQBot_x.x.x_aarch64.AppImage
bash
# Debian / Ubuntu
sudo dpkg -i AQBot_x.x.x_amd64.deb

# Fedora / openSUSE
sudo rpm -i AQBot_x.x.x_x86_64.rpm

# AppImage (any distro)
chmod +x AQBot_x.x.x_amd64.AppImage
./AQBot_x.x.x_amd64.AppImage

First-Time Setup

1. Open Settings

Launch AQBot and click the gear icon at the bottom of the sidebar, or press Cmd/Ctrl+,.

2. Add a Provider

Navigate to Settings → Providers and click the + button.

  1. Enter a display name (e.g. OpenAI).
  2. Select the provider type (OpenAI, Anthropic, Google Gemini, etc.).
  3. Paste your API key.
  4. Confirm the Base URL — the official endpoint is pre-filled for built-in types. Change it only if you use a third-party relay or proxy.

TIP

You can add as many providers as you like. Each provider manages its own set of API keys and models independently.

3. Fetch Models

Click Fetch Models to pull the list of available models from the provider's API. You can also add model IDs manually if needed.

4. Set a Default Model

Go to Settings → Default Model and choose the provider and model that new conversations should use by default.


Your First Conversation

  1. Click New Chat in the sidebar (or press Cmd/Ctrl+N).
  2. Select a model from the model selector at the top of the chat.
  3. Type a message and press Enter.
  4. AQBot streams the response in real time. Models that support thinking blocks (e.g. Claude, DeepSeek R1) display the reasoning process in a collapsible section above the answer.

Key Concepts

Conversation Branching

Edit or regenerate any message to create a branch. The original and new versions coexist in the same conversation tree — navigate between them with the arrow controls on each message.

Message Versions

Every regeneration creates a new version. Switch between versions using the ◀ ▶ arrows on the message bubble.

Context Attachments

Enrich your prompts by attaching files, search results, or MCP tool outputs directly to the conversation context.


Shortcuts

Below are the default keyboard shortcuts. All shortcuts can be customized in Settings → Shortcuts.

ShortcutAction
Cmd/Ctrl+Shift+AShow / hide the current window
Cmd/Ctrl+Shift+Alt+AShow / hide all windows
Cmd/Ctrl+Shift+WClose window
Cmd/Ctrl+NNew conversation
Cmd/Ctrl+,Open Settings
Cmd/Ctrl+KCommand palette
Cmd/Ctrl+Shift+MToggle model selector
Cmd/Ctrl+Shift+Fill last message
Cmd/Ctrl+Shift+KClear context
Cmd/Ctrl+Shift+BackspaceClear conversation messages
Cmd/Ctrl+Shift+GToggle API Gateway

INFO

Global shortcuts (show/hide window) work system-wide even when AQBot is in the background. AQBot detects conflicts with shortcuts from other applications and warns you in Settings.


Desktop Settings

Open Settings to configure the desktop experience.

SettingOptions
ThemeDark, Light, or System (auto)
LanguageEnglish, 简体中文
System trayMinimize to tray, close to tray
Auto-startLaunch AQBot when your computer starts
Always on topKeep the window above other applications
ProxyHTTP or SOCKS5 proxy with host and port

Data & Backup

Data Directories

AQBot stores data in two locations:

PathContents
~/.aqbot/Application state — database, encryption keys, vector DB, SSL certificates
~/Documents/aqbot/User-visible files — images, documents, backups

TIP

On Windows the paths are %USERPROFILE%\.aqbot\ and %USERPROFILE%\Documents\aqbot\.

Auto Backup

Go to Settings → Backup to configure automatic backups:

  • Enabled — toggle automatic backups on or off.
  • Interval — how often to back up (in hours).
  • Max count — number of backups to keep before the oldest is deleted.
  • Storage target — local directory (default: ~/Documents/aqbot/backups/), WebDAV server, or S3-compatible storage.

Manual Backup & Restore

Create a manual backup at any time from the Backup settings panel. To restore, select a backup from the history list and click Restore.

Conversation Export

Right-click a conversation in the sidebar to export it as:

  • PNG — rendered screenshot of the chat
  • Markdown — formatted with headers, code blocks, and LaTeX
  • Plain text — simple text with message separators
  • JSON — structured data with full metadata

Next Steps