Skip to content

Feature: Add SenseVoice for local dictation #27

Description

@LauraGPT

Note

License and capability clarification (2026-07-14): FunASR is a toolkit, not a single checkpoint. The FunASR and SenseVoice repository source code is MIT; model weights follow each model card. SenseVoiceSmall supports Chinese, Cantonese, English, Japanese, and Korean, and its weights use the linked FunASR Model Open Source License Agreement. Fun-ASR-Nano-2512 is Apache-2.0. Language coverage, punctuation, and performance depend on the selected model and runtime configuration.

Hi! VoiceFlow is great for local voice dictation on Windows + Linux.

SenseVoice could improve dictation speed significantly:

Why SenseVoice?

  • 5x faster than Whisper — non-autoregressive
  • 234M params — lighter, faster startup, less RAM
  • Built-in punctuation — no separate step needed
  • 50+ languages — auto-detection
  • Hold-to-talk friendly — constant-time decoding means instant results when you release

Integration

from funasr import AutoModel
model = AutoModel(model="iic/SenseVoiceSmall", vad_model="fsmn-vad", punc_model="ct-punc")
result = model.generate(input=audio)
text = result[0]["text"]  # Ready-to-use punctuated text

Links

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions