[HN Gopher] Show HN: Chirp - Local Windows dictation with Parake...
       ___________________________________________________________________
        
       Show HN: Chirp - Local Windows dictation with ParakeetV3 no
       executable required
        
       I've been working in fairly locked-down Windows environments where
       I'm allowed to run Python, but not install or launch new `.exe`
       files. In addition the built-in windows dictations are blocked (the
       only good one isn't local anyway). At the same time, I really
       wanted accurate, fast dictation without sending audio to a cloud
       service, and without needing a GPU. Most speech-to-text setups I
       tried either required special launchers, GPU access, or were
       awkward to run day-to-day.  To scratch that itch, I built Chirp, a
       Windows dictation app that runs fully locally, uses NVIDIA's
       ParakeetV3 model, and is managed end-to-end with `uv`. If you can
       run Python on your machine, you should be able to run Chirp--no
       additional executables required.  Under the hood, Chirp uses the
       Parakeet TDT 0.6B v3 ONNX bundle. ParakeetV3 has accuracy in the
       same ballpark as Whisper-large-v3 (multilingual WER ~4.9 vs ~5.0 in
       the open ASR leaderboard), but it's much faster and happy on CPU.
       The flow is: - One-time setup that downloads and prepares the ONNX
       model: - `uv run python -m chirp.setup` - A long-running CLI
       process: - `uv run python -m chirp.main` - A global hotkey that
       starts/stops recording and injects text into the active window.  A
       few details that might be interesting technically:  - _Local-only
       STT:_ Everything runs on your machine using ONNX Runtime; by
       default it uses CPU providers, with optional GPU providers if your
       environment allows.  - _Config-driven behavior:_ A `config.toml`
       file controls the global hotkey, model choice, quantization (`int8`
       option), language, ONNX providers, and threading. There's also a
       simple `[word_overrides]` map so you can fix tokens that the model
       consistently mishears.  - _Post-processing pipeline:_ After
       recognition, there's an optional "style guide" step where you can
       specify prompts like "sentence case" or "prepend:  >>" for the
       final text.  - _No clipboard gymnastics required on Windows:_ The
       app types directly into the focused window; there are options for
       clipboard-based pasting and cleanup behavior for platforms where
       that makes more sense.  - _Audio feedback:_ Start /stop sounds
       (configurable) let you know when the mic is actually recording.  So
       far I've mainly tested this on my own Windows machines with English
       dictation and CPU-only setups. There are probably plenty of rough
       edges (different keyboard layouts, language settings, corporate IT
       policies, etc.), and I'd love feedback from people who:  - Work in
       restricted corporate environments and need local dictation. - Have
       experience with Parakeet/Whisper or ONNX Runtime and see obvious
       ways to improve performance or robustness. - Want specific features
       (e.g., better multi-language support, more advanced post-
       processing, or integrations with their editor/IDE).  Repo is here:
       `https://github.com/Whamp/chirp`  If you try it, I'd be very
       interested in:  - CPU usage and latency on your hardware, - How
       well it behaves with your keyboard layout and applications, - Any
       weird failure cases or usability annoyances you run into.  Happy to
       answer questions and dig into technical details in the comments.
        
       Author : whamp
       Score  : 21 points
       Date   : 2025-11-14 19:07 UTC (3 hours ago)
        
 (HTM) web link (github.com)
 (TXT) w3m dump (github.com)
        
       | whamp wrote:
       | btw this is my first open-source project
        
       | lxe wrote:
       | I've done something similar for Linux and Mac. I originally used
       | Whisper and then switched to Parakeet. I much prefer whisper
       | after playing with both. Maybe I'm not configuring Parakeet
       | correctly, But the transcription that comes out of Whisper is
       | usually pretty much spot on. It automatically removes all the
       | "ooms" and all the "ahs" and it's just way more natural, in my
       | opinion. I'm using Whisper.CPP with CUDA acceleration. This whole
       | comment is just written with me dictating to a whisper, and it's
       | probably going to automatically add quotes correctly, there's
       | going to be no ums, there's going to be no ahs, and everything's
       | just going to be great.
        
         | clueless wrote:
         | Mind sharing your local setup for Mac?
        
           | lxe wrote:
           | https://github.com/lxe/yapyap/tree/parakeet-nemo
           | 
           | It's been a while, so I don't know if it's going to work
           | because of the Nemo toolkit ASR numpy dependency issues.
           | 
           | I use it for Linux using whisper CPP and it works great
        
       | hastamelo wrote:
       | how does the quality compare with the windows built in one
       | (Win+H), the one with online models?
       | 
       | I'm using that to dictate prompts, it struggles with technical
       | terms: JSON becomes Jason, but otherwise is fine
        
         | lxe wrote:
         | In my opinion, attempting to perform live dictation is a
         | solution that is looking for a problem. For example, the way
         | I'm writing this comment is: I hold down a keyboard shortcut on
         | my keyboard, and then I just say stuff. And I can say a really
         | long thing. I don't need to see what it's typing out. I don't
         | need to stream the speech-to-text transcription. When the full
         | thing is ingested, I can then release my keys, and within a
         | second it's going to just paste the entire thing into this
         | comment box. And also, technical terms are going to be just
         | fine with Whisper. For example, Here's a JSON file.
         | 
         | (this was transcribed using whisper.cpp with no edits. took
         | less than a second on a 5090)
        
           | atonse wrote:
           | I've been using Parakeet with MacWhisper for a lot of my AI
           | coding interactions. It's not perfect but generally saves me
           | a lot of time.
        
       | hamza_q_ wrote:
       | Cool use of ONNX! Fluid Inference also have great implementations
       | of Parakeet v2/v3 in CoreML for Apple devices and OpenVINO for
       | Intel:
       | 
       | https://github.com/FluidInference/FluidAudio
       | 
       | https://github.com/FluidInference/eddy-audio
        
       ___________________________________________________________________
       (page generated 2025-11-14 23:00 UTC)