Voke is a cross-platform application based on Electron, supporting Windows, macOS, and Linux systems. Combining ASR (Automatic Speech Recognition) with LLM (Large Language Models), it not only "transcribes" but also "understands", "polishes", and "answers", helping you efficiently produce high-quality text.
- Cross-Platform Support: Built on the Electron framework, compatible with Windows, macOS, and Linux.
- Simple Configuration: Just enter your ASR API and AI API keys to use. Supports OpenAI-compatible providers (default is Alibaba Cloud DashScope).
- Developer Friendly: Provides a complete developer mode, easy to extend and develop secondarily.
- Privacy Secure: Configuration and history data are stored locally; APIs communicate directly with service providers.
Enable AI Polishing: Long press Right Alt to speak, release to optimize expression and make the text smoother.
Select Text: Long press Right Alt and speak a command, release to precisely adjust text content to meet personalized needs.
Long press Right Ctrl and ask a question, release to get an AI answer.
Voke provides installers for Windows, macOS, and Linux platforms.
- Windows: Download
- macOS: (Coming Soon)
- Linux: (Coming Soon)
If you are a developer or want to experience the latest features, you can run from source:
- Node.js 18+
- pnpm (Recommended) or npm
git clone https://github.com/zyk/Voke.git
cd Vokepnpm installpnpm run devThis command will start both the Electron main process and the Vite renderer process with hot reload support.
# If encountering proxy bypass issues with app-builder
# For Windows, run the following commands first (7890 is your VPN port)
# $env:HTTP_PROXY="http://127.0.0.1:7890"
# $env:HTTPS_PROXY="http://127.0.0.1:7890"
# For macOS/Linux, run the following commands first
# export HTTP_PROXY="http://127.0.0.1:7890"
# export HTTPS_PROXY="http://127.0.0.1:7890"
# Build for specific platform
pnpm run build:win # Windows
pnpm run build:mac # macOS
pnpm run build:linux # LinuxAfter starting the application, go to the Settings Page for quick configuration:
- ASR Configuration (Speech Recognition):
- Enter your ASR API Key.
- Default supports Alibaba Cloud DashScope (Qwen-ASR), also configurable for other OpenAI-compatible ASR services.
- AI Configuration (Large Model):
- Enter your AI API Key.
- Configure Base URL and Model Name (e.g.,
qwen-flash).
Tip: Configuration information is stored encrypted on your local device and will not be uploaded to any third-party servers.







