Skip to main content

A unified, extensible, and modern Python toolkit for LLM-based Automatic Speech Recognition (ASR).

Project description

Modern ASR

A unified, extensible, and future-proof Python toolkit for locally running state-of-the-art LLM-based Automatic Speech Recognition (ASR) models.

Python License


✨ Features

  • 🧩 23 Models — Whisper, SenseVoice, Qwen, MiMo, FireRedASR, GLM-ASR, and more
  • 🔌 Plugin Architecture — Add new models with @register_model decorator
  • 🚀 Hot-Swap — Switch models at runtime without restarting
  • 🌍 Multi-Language — 52 languages, 22 Chinese dialects
  • 🎯 Multi-Task — Transcription, translation, diarization, emotion, events
  • 💻 Local-First — All inference on-device. No APIs. No data leaves your machine.
  • 🍎 Apple Silicon — MPS (Metal Performance Shaders) support on macOS
  • 🐍 Modern Python — uv-native packaging, Pydantic configs, rich CLI

📦 Installation

From PyPI (Recommended)

# Core only — registry, pipeline, and CLI (no models)
pip install modern-asr

# Specific model
pip install modern-asr[whisper]
pip install modern-asr[qwen-asr]
pip install modern-asr[sensevoice]

# All models
pip install modern-asr[all-models]

# All models + all inference backends
pip install modern-asr[all]

Available extras: transformers, vllm, onnx, fireredasr, sensevoice, funasr, qwen-asr, mimo-asr, canary, glm-asr, whisper, moonshine, all-models, all-backends, all.

From Source

# Clone the repository
git clone https://github.com/vra/modern-asr.git
cd modern-asr

# Sync dependencies (recommended)
uv sync --all-extras

# Or install specific extras only
uv sync --extra transformers --extra whisper

# Or just core dependencies
uv sync

Python 3.10+ recommended. Some models (Qwen3-ASR, MiMo) require Python ≥ 3.10.


🚀 Quick Start

from modern_asr import ASRPipeline

# Transcribe with SenseVoice (Alibaba)
pipe = ASRPipeline("sensevoice-small")
result = pipe("audio.wav", language="zh")
print(result.text)

# Switch to Qwen3-ASR for dialect support
pipe.switch_model("qwen3-asr-0.6b")
result = pipe("audio.wav", language="zh")
print(result.text)

# English with Whisper
pipe.switch_model("whisper-small")
result = pipe("audio.wav", language="en")

📚 Documentation

Full documentation with Material for MkDocs:

mkdocs serve

🏗️ Architecture

Modern ASR is built on three layers:

  1. ASRPipeline — Unified user API. Handles input normalization, task dispatch, model lifecycle.
  2. ASRModel / AudioLLMModel — Adapter layer. New models often need only 8 lines of config via AudioLLMModel.
  3. Backends — Transformers, vLLM, ONNX Runtime.

Adding a New Model

from modern_asr.core.audio_llm import AudioLLMModel
from modern_asr.core.registry import register_model

@register_model("my-model-1b")
class MyModel1B(AudioLLMModel):
    HF_PATH = "org/MyModel-1B"
    SUPPORTED_LANGUAGES = {"zh", "en"}
    CHUNK_DURATION = 30.0

    @property
    def model_id(self) -> str:
        return "my-model-1b"

That's it. The registry auto-discovers it at runtime.


🤝 Contributing

See Contributing Guide for development setup, code style, and PR checklist.


📄 License

Apache-2.0

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

modern_asr-0.1.4.tar.gz (372.5 kB view details)

Uploaded Source

Built Distribution

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

modern_asr-0.1.4-py3-none-any.whl (51.1 kB view details)

Uploaded Python 3

File details

Details for the file modern_asr-0.1.4.tar.gz.

File metadata

  • Download URL: modern_asr-0.1.4.tar.gz
  • Upload date:
  • Size: 372.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for modern_asr-0.1.4.tar.gz
Algorithm Hash digest
SHA256 5a29c223cb83edf42666575187b1c88a7808baf0835bace8a4ea9dfaaa8f2720
MD5 ccbd481d9b92e45d12359f612d6bb009
BLAKE2b-256 36df38a07f3fe0e66a8f4ce85dc4a63a30f76011ca1e21ca3ecb5a40cb5c9244

See more details on using hashes here.

File details

Details for the file modern_asr-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: modern_asr-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 51.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for modern_asr-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 758f50930207a613ee6872d3d2d14bcdee12da33781d1450de752e8fb353c771
MD5 9a5877e4accb4d73a341ab541476fcd8
BLAKE2b-256 b2b2933601c11ef0967b82621778bfb9d48a2925d3c6bd00a5cdd71ac8f9abc3

See more details on using hashes here.

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