Skip to main content

Local, offline voice dictation for Linux, macOS, and Windows — hold a key, speak, release

Project description

YazSes

Tests PyPI License: Apache 2.0

Hold a key → speak → release. On-device voice dictation that types into any app, plus voice commands and macros — entirely offline. No cloud. No API key. No subscription.

YazSes is an open-source, offline voice-dictation daemon for Linux, macOS, and Windows. It transcribes your speech locally with faster-whisper and types the result into whatever window has focus. Use it when you want hands-free dictation and editor/terminal voice commands without sending audio to Google, Apple, or Microsoft. Unlike cloud dictation such as Wispr Flow, YazSes runs entirely on-device; unlike Talon Voice, it aims at plug-and-play dictation rather than advanced scripting. YazSes is not recommended if you need a conversational AI agent, non-English models out of the box, or a mobile/web app.

yazses doctor — all green, fully offline


Two versions of YazSes

This repo holds one product with two implementations — not two separate apps, but two generations of the same idea. The one you install and run is Part 1 (Python), on this main branch.

Part 1 — Python · main Rust HCI exploration · archive/rust-hci-v1
What it is The shipping app — voice dictation, commands, macros An early-stage rewrite exploring deeper human–computer interaction: an on-device agent (LLM tool-use, personal memory, editor awareness)
Status Active — current product (v1.4.1, installed & maintained) ⏸️ Paused / archived — not shipped, not installable
Hold-to-talk dictation
Offline STT ✅ faster-whisper (CPU int8) ✅ Whisper + Moonshine v2 (~9 ms)
Voice commands ✅ regex grammar (+ optional SLM router) → key sequences ✅ via LLM tool-calls
Voice macros · Mid-Thought Undo · Punch-In · Prosody Ink · Ghost Ahead
Dysfluency-Friendly Mode · learning corpus + yazses tune
Friendly CLI (-h, examples, yazses update)
On-device LLM agent (OS tools: git commit, media, notes, screenshots…) ❌ (optional offline text cleanup only)
Personal memory (encrypted on-device vector store)
Editor context (Neovim / VS Code) ✅ LSP context, opt-in ✅ 5-tier window detection + bridges
Screen-reader integration (AT-SPI / NVDA)
Packaged & distributed (PyPI, snap, APT)

Bottom line: if you want YazSes, use Part 1 (this branch) — an offline dictation + voice-command daemon. The Rust branch is kept only for reference; nothing on main builds, installs, or depends on it. The Rust effort aimed at a more ambitious agentic HCI layer but was left in early stages — revisiting it is a deliberate future decision, not part of day-to-day work here.


Quick Start

Step 1 — Install (see all install options for every platform)

Platform Command
Linux (recommended) bash <(curl -fsSL https://raw.githubusercontent.com/MSKazemi/yazses/main/install.sh)
Linux (Debian/Ubuntu, APT) bash <(curl -fsSL https://raw.githubusercontent.com/MSKazemi/yazses/main/install-apt.sh)
Any OS (Python ≥ 3.11) pipx install yazses

The recommended one-liner installs uv if needed, installs the latest YazSes, provisions every system prerequisite (audio, keystroke injection, clipboard, input group, Wayland ydotoold), and finishes by running yazses doctor so any missing tool surfaces during install. The APT and pipx paths install the last tagged release.

Not the snap. sudo snap install yazses runs under strict confinement, which blocks reading the keyboard — so hold-to-talk never fires. Use the install script or pipx instead (both run unconfined and capture the hotkey).

Step 2 — Provision the system (Linux — one command; the APT install does it automatically)

yazses setup        # installs audio + injection deps, joins the input group, sets up ydotoold
# then log out and back in (the input-group change needs a fresh login)

yazses setup ends by printing a numbered finish-installing checklist of the steps only you can do — the input-group re-login, calibrate your voice (yazses mic-level --set), and yazses start — and offers to run the mic calibration for you right away.

The log-out/in is mandatory and one-time. Joining the input group only takes effect in a new login session — opening another terminal tab is not enough, because it inherits the old session's groups and the hotkey stays dead. yazses start will warn you if this re-login is still pending. To dictate immediately without logging out, bridge the group for one session: sg input -c "yazses restart". After a real re-login, plain yazses start just works.

yazses setup fixes everything dictation needs and is safe to re-run — it only does what's missing:

  • libportaudio2 — audio capture (without it the daemon crashes on start with OSError: PortAudio library not found).
  • injection backendsxdotool/xclip (X11) and wtype/ydotool/wl-clipboard (Wayland).
  • input group — required to read the hold-to-talk hotkey from the kernel.
  • ydotoold — the virtual-input daemon. On GNOME/KDE Wayland this is the only way to inject keystrokes (wtype is blocked there), so setup installs and enables it.

Prefer to do it by hand? sudo apt install libportaudio2 xdotool ydotool wtype xclip wl-clipboard pipx && sudo usermod -aG input "$USER", then enable ydotoold (see install-linux). Verify anytime with yazses doctor — you want [OK] Keyboard capture, [OK] Microphone, and [OK] Injection. macOS/Windows skip this step (grant Accessibility/permissions when prompted — see below).

Step 3 — Set up

yazses quickstart           # not sure what's next? a 3-step guide tailored to your machine
yazses doctor               # check mic, injection backend, permissions (want all [OK])
yazses enroll               # calibrate your microphone (~30 seconds)
yazses start                # start the dictation daemon

New to YazSes? Run yazses quickstart anytime — it looks at what's already set up and tells you exactly what to do next. It changes nothing.

Step 4 — Use it — hold the hotkey, speak, release. The text is typed into the focused app.

OS Hold this key Say…
Linux Space "the quick brown fox" (types it) · "go to line 42" · "run the tests"
macOS Right Option "delete the last word" · "save file" · "new function parse config"
Windows Right Ctrl "undo that" · "select all" · "comment this line"

Release the key — YazSes transcribes and acts within about a second.

First time on macOS? v0 builds are unsigned: right-click the app → Open (Gatekeeper), then grant Accessibility + Microphone when prompted.

First time on Windows? If SmartScreen warns you, click More info → Run anyway.


What you can say

Hold the key and just talk — by default everything you say is typed at the cursor. YazSes also recognises a set of voice commands (a fast regex grammar; an optional ~0.5B SLM router catches phrasings the grammar misses) that map to editor/terminal key sequences instead of being typed:

Say something like… What happens
"the quick brown fox" Types the text at the cursor (dictation)
"delete the last three words" Deletes the last 3 words
"undo that" / "undo five times" Sends undo
"save file" · "copy" · "paste" Save / copy / paste
"select all" · "select to end" Selection commands
"comment this line" Toggles a comment
"go to line 42" Jumps to line 42
"go to function parse_config" Jumps to the symbol (via LSP, opt-in)
"run the tests" / "run the build" Runs the editor/terminal action
"rename this to user_id" Renames the symbol

You can also define multi-step macros and a personal vocabulary of mis-heard words — see the CLI reference.


How it works

Hold hotkey → record audio → VAD gate → faster-whisper (CPU) → clean + disfluency filter
            → command grammar (Tier 1 regex, optional Tier 2 SLM router)
            → dictate? type the text   ·   command? send the key sequence

Everything runs on your CPU — no GPU, no network. Transcription uses faster-whisper (int8). A fast regex grammar classifies each utterance as dictation or a command; when its confidence is low, an optional ~0.5B SLM router takes a second look. The result appears in the focused window within about a second on a modern laptop.

Models:

  • Speech-to-text: faster-whisper — tiny.en (fast) / base.en / small.en (more accurate), int8 on CPU
  • Command routing (optional): Qwen2.5-0.5B SLM for Tier 2 intent classification — not required for dictation, fetched with yazses model download
  • Dictation cleanup (optional, off by default): a small offline LLM can tidy grammar/punctuation; length- and token-preservation guards stop it rewriting meaning

Requirements

OS Linux (primary) · macOS 11+ · Windows 10 (21H2)+
RAM 4 GB minimum · 8 GB comfortable
Disk ~250 MB–1 GB for the faster-whisper model (downloaded on first run)
CPU 2+ cores · no GPU required
Mic Any USB or built-in microphone

Key features

  • Fully offline — no audio, no text, nothing leaves the machine by default; no cloud, API key, or subscription
  • Hold-to-talk dictation — type into any focused app on Linux, macOS, or Windows
  • Voice commands — editor/terminal actions (undo, save, go-to-line, run tests, rename…) via regex grammar + an optional SLM router
  • Macros & personal vocabulary — define multi-step commands and teach YazSes your mis-heard words
  • Dysfluency-Friendly Mode — opt-in collapse of stutters/repeats (b-b-becausebecause) for stuttered or dysarthric speech
  • Self-improving — opt-in, encrypted on-device learning corpus; yazses tune proposes accuracy fixes from your own corrections (nothing leaves the machine)
  • Editor context — optional Neovim / VS Code LSP context improves accuracy on code identifiers
  • Accessibility — VAD calibration wizard, mic-level tuning, and EMG (muscle-sensor) trigger support for motor-disability use
  • Voice-activity overlay — optional sonar rings near the cursor while you speak

Use cases

  • Writers & journalists — draft long-form text hands-free without your words leaving the machine.
  • Developers — dictate code comments and commit messages, and drive the editor/terminal by voice (undo, save, go-to-line, run tests, rename a symbol).
  • Privacy-conscious professionals — dictate in fields like law, medicine, or research where audio must never touch a cloud service.
  • Accessibility & motor-disability users — hold-to-talk or EMG (muscle-sensor) triggering for hands-free input, with Dysfluency-Friendly Mode for stuttered or dysarthric speech.
  • Offline / air-gapped environments — dictation on machines with no reliable internet or where external network calls are disallowed.

Limitations / when not to use YazSes

  • Not an LLM agent. YazSes dictates text and runs editor/terminal commands. It does not browse, reason over your files, set timers, or hold a conversation — that was the paused Rust exploration (see Two versions above).
  • CPU faster-whisper, not a cloud service. For the absolute lowest word-error rate on a noisy mic, a cloud STT may still beat it; the trade-off is that nothing leaves your machine.
  • English-tuned by default. It ships with *.en Whisper models; other languages need a different model.
  • Desktop only. No mobile or web build.

Comparison & alternatives

An honest comparison with other voice-dictation tools. All claims are about publicly documented behaviour; each tool has strengths YazSes does not.

YazSes Dragon Talon Voice Windows Voice Access Wispr Flow
Runs offline / on-device ❌ (cloud)
Voice commands ✅ regex grammar + optional SLM ✅ advanced scripting limited
Linux
macOS ❌ (discontinued)
Windows ✅ (built in)
Price Free, Apache-2.0 Paid Free (paid beta features) Free (built into Windows 11) Paid subscription
Open source

When another tool may fit better:

  • Talon Voice — if you want deep, scriptable voice control and are willing to learn its scripting model. YazSes and Talon can coexist.
  • Windows Voice Access — if you are on Windows 11 only and want a zero-install, OS-native option.
  • Dragon — if you need a mature, professionally supported dictation product on Windows and can pay for it.
  • Wispr Flow — if you prefer a polished cloud service and are comfortable sending audio off-device.

Choose YazSes when you specifically want dictation and voice commands that are open source, cross-platform (including Linux), and fully offline with nothing leaving your machine.


FAQ

What is YazSes? YazSes is an open-source, offline hold-to-talk voice-dictation daemon for Linux, macOS, and Windows. You hold a key, speak, and release; your speech is transcribed on-device with faster-whisper and typed into the focused application, with support for editor and terminal voice commands and macros.

Is there a good offline voice-dictation tool for Linux? Yes — YazSes runs natively on Linux (X11 and Wayland), transcribes locally on the CPU, and needs no cloud service or API key. It installs via an APT script or pipx.

YazSes vs Talon? Both are cross-platform and work offline. YazSes focuses on plug-and-play dictation plus a practical command grammar (with an optional small SLM router). Talon offers far more advanced, scriptable voice control. They can be used side by side.

Does it work without internet? Yes. Transcription runs locally with faster-whisper, and no audio or text is sent anywhere by default. YazSes works fully offline and on air-gapped machines.

Is it free and open source? Yes — YazSes is released under the Apache 2.0 license, with no subscription or API key.

What hardware do I need? No GPU. It runs on CPU with 4 GB RAM minimum (8 GB comfortable) and any USB or built-in microphone.

Is it an AI agent? No. YazSes dictates text and runs editor/terminal voice commands; it does not browse, reason over your files, or hold a conversation. (An agentic version was prototyped in the archived Rust branch but is not shipped.)


CLI commands

Command Description
yazses quickstart New here? A 3-step, machine-tailored getting-started guide (read-only)
yazses start Start the YazSes daemon in the background (restarts cleanly if one is already running; verifies it actually came up)
yazses restart Stop all daemons (including detached) and start exactly one
yazses stop Stop the running daemon
yazses status Show daemon status — queries the daemon over IPC when reachable
yazses doctor Check prerequisites (version, daemon, model, mic, injection backend, permissions) — ends with a ✓/▲/✗ verdict
yazses enroll Calibrate your microphone — tunes vad_threshold for your voice and room
yazses mic-level Measure mic speech level and recommend (or --set) the VAD threshold
yazses features List capabilities and toggle them (enable/disable <name>)
yazses vocab Personal dictionary of mis-heard words (add/list/remove)
yazses hotkey Show or change the hold-to-talk key (set) and the dedicated command key (command)
yazses overlay Launch the sonar voice-activity overlay (requires the overlay extra)
yazses inject TEXT Type arbitrary text into the focused window — test injection without speaking
yazses say TEXT Speak text aloud (offline TTS)
yazses test End-to-end self-test: focuses a window and types YazSes OK
yazses logs Show the daemon diagnostic log (metadata only — no dictated text is stored)
yazses mark-wrong Flag the last dictation as a misrecognition (feeds the learning corpus)
yazses tune Analyse the learning corpus and propose accuracy improvements; --apply to write changes
yazses corpus Manage the local learning corpus (status, forget, destroy)
yazses model List or download the optional SLM intent-routing model
yazses remote HOST Forward voice typing to a remote host over SSH

Configuration

Config file location:

OS Path
Linux ~/.config/yazses/config.toml
macOS ~/Library/Application Support/yazses/config.toml
Windows %APPDATA%\yazses\config.toml

Prefer yazses features / yazses hotkey / yazses vocab to edit config safely (they preserve comments). Essential settings:

[stt]
model = "small.en"          # tiny.en (fast) | base.en | small.en (accurate); CPU int8
initial_prompt = ""         # vocabulary/context primed into Whisper

[hotkey]
key = "space"               # hold-to-talk key (yazses hotkey set <key>)
command_key = ""            # optional dedicated key that forces command mode
hold_threshold_ms = 500     # how long to hold before recording starts

[audio]
sample_rate = 16000
max_record_seconds = 90

[injection]
backend = "auto"            # auto | xdotool | ydotool | wtype | clipboard

[accessibility]
vad_threshold = 0.0008      # lower for quiet speech, raise if room noise triggers (yazses mic-level --set)

See the CLI reference and examples/config.example.toml for all options.

Microphone not working?

If YazSes does nothing and the log shows Silent audio -- discarding, your speech is below the VAD threshold:

yazses mic-level --set   # measure your voice and set the right threshold
yazses restart

All install options

Install or upgrade to the latest version

pipx install yazses always pulls the latest published release from PyPI. If you already have YazSes installed, upgrade in place:

pipx upgrade yazses          # upgrade an existing install to the latest release
pipx install --force yazses  # reinstall the latest (if upgrade reports "already at latest")

Pin an exact version if you need one: pipx install yazses==1.4.1. Check what you have with yazses --version (or yazses doctor, which also reports the running daemon).

Linux

# APT script — Debian / Ubuntu (recommended)
bash <(curl -fsSL https://raw.githubusercontent.com/MSKazemi/yazses/main/install-apt.sh)

# pipx — any distro with Python ≥ 3.11
# Debian/Ubuntu runtime deps. libportaudio2 = audio capture (required);
# xdotool/xclip = X11 injection+clipboard; wtype/ydotool/wl-clipboard = Wayland.
# Installing all of them makes YazSes work on either session type.
sudo apt install libportaudio2 xdotool ydotool wtype xclip wl-clipboard pipx
sudo usermod -aG input "$USER"   # hotkey access — then log out and back in
pipx install yazses

# From source (contributors) — one command does the whole loop:
# editable install + `yazses setup` provisioning + start (bridges the input
# group so you can test before logging out).
bash scripts/dev-install.sh

# Snap — NOT recommended for dictation. The strict-confinement snap cannot read
# /dev/input, so hold-to-talk never fires (only the offline `yazses transcribe
# <file>` path works). Use the APT script or pipx above for a working hotkey.
# sudo snap install yazses

macOS

# pipx (Python ≥ 3.11)
pipx install yazses

# App bundle (.dmg) — unsigned developer preview
# https://github.com/MSKazemi/yazses/releases/latest

Windows

# pipx (Python ≥ 3.11)
pipx install yazses

# Installer (.exe) — unsigned developer preview
# https://github.com/MSKazemi/yazses/releases/latest

Documentation

Install on Linux Detailed Linux guide — permissions, injection backends, service setup
Install on macOS Gatekeeper, Accessibility, Microphone permissions
Install on Windows SmartScreen, antivirus exceptions, privacy settings
CLI reference All commands and flags (incl. macros & vocabulary for custom voice commands)
Privacy statement What stays on-device, what is never collected

Development

YazSes (Part 1) is a Python project managed with uv:

git clone https://github.com/MSKazemi/yazses
cd yazses
uv sync
uv run python -m pytest tests/ -v
bash scripts/install-local.sh        # install locally + run as a user service

Install the latest dev build from source (ahead of the published PyPI release — this is how a working copy is installed system-wide as an unconfined uv tool, which Linux hold-to-talk needs because the strict-confinement snap cannot read /dev/input):

uv tool install --from . yazses --force   # (re)install the working tree as the `yazses` command
yazses restart                            # restart the daemon onto the new build
yazses --version                          # confirm the installed build

Rust HCI exploration (archived)

The early-stage Rust rewrite lives on the archive/rust-hci-v1 branch, not on main. It is not built or installed by anything here — see Two versions of YazSes above for what it does and doesn't have. To look at it:

git checkout archive/rust-hci-v1
cargo build && cargo test --workspace   # optional backends: whisper, moonshine, llama-cpp, ollama, silero

Citation

If YazSes is useful in your research or projects, please cite it — see CITATION.cff for machine-readable metadata (CFF 1.2.0), or:

Seyedkazemi Ardebili, M. YazSes: offline hold-to-talk voice dictation for Linux, macOS & Windows. https://github.com/MSKazemi/yazses

License

Apache 2.0 — see LICENSE.

If YazSes is useful to you, a ⭐ on GitHub and a mention in your project, blog, or talk is the best way to support continued development.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yazses-2.12.0.dev4.tar.gz (3.7 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

yazses-2.12.0.dev4-py3-none-any.whl (547.2 kB view details)

Uploaded Python 3

File details

Details for the file yazses-2.12.0.dev4.tar.gz.

File metadata

  • Download URL: yazses-2.12.0.dev4.tar.gz
  • Upload date:
  • Size: 3.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yazses-2.12.0.dev4.tar.gz
Algorithm Hash digest
SHA256 083a9ca3fa21b0545bafce79752b35249601360a400d0ca60e41704abcf9e638
MD5 81a3dedbbb51d17c17e95d74a6f23884
BLAKE2b-256 a33a50a584341ab7c4eb11730aeabef9ed548323a17b9315cfce81d68515d8d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for yazses-2.12.0.dev4.tar.gz:

Publisher: release.yml on novafabric/yazses

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file yazses-2.12.0.dev4-py3-none-any.whl.

File metadata

  • Download URL: yazses-2.12.0.dev4-py3-none-any.whl
  • Upload date:
  • Size: 547.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for yazses-2.12.0.dev4-py3-none-any.whl
Algorithm Hash digest
SHA256 61cd7f40ebdc858aea33eb3916d56cb780c09fac9c14df0327fb63e45a04f51a
MD5 24d43bb23cf3bfcef09798386fc9d090
BLAKE2b-256 6cf7927984d3f57c6c6e9bb68523f617829a25478bf4c73d82da813a3912db64

See more details on using hashes here.

Provenance

The following attestation bundles were made for yazses-2.12.0.dev4-py3-none-any.whl:

Publisher: release.yml on novafabric/yazses

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page