Skip to main content

Omi Med STT Runtime

PyPI Tests License: MIT

Command-line runtime for Omi Med STT v1, an English medical speech-to-text model built from NVIDIA Parakeet TDT 0.6B v2.

The package downloads the right model artifact for your machine and transcribes audio locally.

Install

pip install -U omi-med-stt

Apple Silicon:

pip install -U "omi-med-stt[mlx]"

NVIDIA CUDA / NeMo:

pip install -U "omi-med-stt[nemo]"

The NVIDIA adapter applies the qualified GPU recipe automatically: NeMo 3.0, BF16, local [256,256] attention, greedy-batch TDT decoding with max_symbols=10, timestamps disabled, and duration-sorted batches capped at eight files or 900 audio-seconds. Inputs are normalized through FFmpeg to mono 16 kHz PCM16. A BF16-capable NVIDIA GPU is required; no inference flags are needed beyond --runtime nemo.

Run

omi-med-stt audio.wav

Useful options:

omi-med-stt audio.wav --json
omi-med-stt audio.wav --runtime mlx
omi-med-stt audio.wav --runtime nemo
omi-med-stt audio.wav --runtime cpp
omi-med-stt check

Audio formats. WAV, FLAC, OGG and other libsndfile formats are read directly. Other inputs — .m4a (iPhone Voice Memos / QuickTime), .mp3, .aac, .mp4, .mov, .wma, .opus, .webm, … — are decoded with ffmpeg, which ships with the package, so there's nothing extra to install. If a system ffmpeg is on your PATH it's used instead (e.g. a newer build). Whatever the input, audio is downmixed to mono and resampled to 16 kHz automatically.

Runtime Choices

Platform Default runtime Model artifact
Apple Silicon mlx omi-health/omi-med-stt-v1-mlx-q8
NVIDIA CUDA nemo omi-health/omi-med-stt-v1
Linux/Windows CPU cpp omi-health/omi-med-stt-v1-gguf

The canonical model is the NeMo checkpoint. MLX and GGUF are runtime exports.

CPU setup:

omi-med-stt install-cpp --cpp-backend cpu
omi-med-stt audio.wav --runtime cpp

The CPU path uses a patched parakeet.cpp runtime and downloads the q8_0 GGUF artifact only. It does not download the NeMo or MLX weights. Unknown tokens are rendered as the same U+2047 marker the NeMo and MLX runtimes emit (rendering parity, not transcript correction).

Runtime Quality

Artifact WER M-WER Drug M-WER Medical Recall
NeMo canonical 6.54% 2.23% 4.75% 97.77%
MLX q8 6.65% 2.12% 4.52% 97.88%

These numbers compare the unchanged runtime artifacts against each other on the same internal benchmark using the runtime recipes shipped in this package. Visit omi.health for the broader model evaluation and product context.

Runtime recipes and checks:

The recipe pages include the exact runtime settings, verification commands, and paths to the tests that enforce them.

Model Repositories

If the model repositories are private before launch, authenticate first:

huggingface-cli login

CUDA Note

If --runtime nemo fails with a CUDA driver mismatch, install a PyTorch wheel matching your driver before installing the NeMo extra. For example, on CUDA 12.8 hosts:

pip install torch --index-url https://download.pytorch.org/whl/cu128
pip install -U "omi-med-stt[nemo]"

Development

git clone https://github.com/Omi-Health/omi-med-stt-runtime
cd omi-med-stt-runtime
pip install -e ".[dev]"
python scripts/prepublish_check.py --skip-build
python -m pytest -q tests

Safety

Omi Med STT v1 is speech-to-text only. It is not a diagnostic, triage, prescribing, or clinical decision model, and it is not clinically validated. Transcripts must be reviewed before any clinical use.

License And Attribution

Runtime code is MIT licensed.

Model weights are CC-BY-4.0 and are derived from nvidia/parakeet-tdt-0.6b-v2. Omi Med STT v1 is not an NVIDIA model.

The CPU runtime uses parakeet.cpp.

Download files

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

Source Distribution

omi_med_stt-0.1.24.tar.gz (46.0 kB view details)

Uploaded Source

Built Distribution

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

omi_med_stt-0.1.24-py3-none-any.whl (31.5 kB view details)

Uploaded Python 3

File details

Details for the file omi_med_stt-0.1.24.tar.gz.

File metadata

  • Download URL: omi_med_stt-0.1.24.tar.gz
  • Upload date:
  • Size: 46.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.9

File hashes

Hashes for omi_med_stt-0.1.24.tar.gz
Algorithm Hash digest
SHA256 d3ac815f0e21efdcfde0c887fae0c0d76d41454cd02379d473d3bfd0c92906b9
MD5 7fd3564273a83f0d38ccd06d3a6ed748
BLAKE2b-256 e3bd2a03c1abed1dccf8756c535f4cc2645cea01b4076c19f78b172e0773df35

See more details on using hashes here.

File details

Details for the file omi_med_stt-0.1.24-py3-none-any.whl.

File metadata

  • Download URL: omi_med_stt-0.1.24-py3-none-any.whl
  • Upload date:
  • Size: 31.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.9

File hashes

Hashes for omi_med_stt-0.1.24-py3-none-any.whl
Algorithm Hash digest
SHA256 b2e0269568ff600a788c7eccc4de6eaeb9c0bcbbbd788c242c4856e8a0bb75c1
MD5 dd1f82e927860e5312bd535288cd38a7
BLAKE2b-256 91fc225613fe797468cc6e2d7bdafe180883c4de69487a325612fe05f9a09b86

See more details on using hashes here.

Release history Release notifications | RSS feed

0.2.1

2 files

0.2.0

2 files

0.1.25

2 files

This release

0.1.24 This release

2 files

0.1.23

2 files

0.1.22

2 files

0.1.21

2 files

0.1.20

2 files

0.1.19

2 files

0.1.18

2 files

0.1.17

2 files

0.1.16

2 files

0.1.15

2 files

0.1.14

2 files

0.1.13

2 files

0.1.12

2 files

0.1.11

2 files

0.1.9

2 files

0.1.8

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page