Registry / ai-ml / qwen-asr

qwen-asr

JSON →
library0.0.6pypypiunverified

Qwen-ASR is a Python package for automatic speech recognition (ASR) using the Qwen3 model family. Version 0.0.6 supports real-time and file-based transcription with speaker diarization. Release cadence is irregular; in early development.

pip install qwen-asr
INSTALL
IMPORT
SIG · QWEN-ASR
Q
qwen-asr
ai-mlpythonv0.0.6
Install
—
Import
—
Disk
—
Pass rate
0/ 10
Env Coverage0 / 10
glibc
3.9–3.13
musl
3.9–3.13
Install & Compatibility
Where this runs
tested against v? · pip install
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.10–3.95 runs
build_error
glibc
py 3.10–3.95 runs
timeout
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

QwenASR
✓ from qwen_asr import QwenASR
✗ from qwen_asr import ASR
Class name is QwenASR, not ASR
AudioInput
✓ from qwen_asr import AudioInput

Initialize QwenASR with an API key and transcribe an audio file.

from qwen_asr import QwenASR import os api_key = os.environ.get('QWEN_API_KEY', '') model = QwenASR(api_key=api_key) transcription = model.transcribe('audio.wav') print(transcription)
Debug
Known issues
gotchaThe QwenASR constructor requires an `api_key` argument; omitting it or passing a wrong value leads to silent fallback to a local model if available, otherwise fails.
fix
Always set the environment variable QWEN_API_KEY or pass api_key explicitly.
affects: <=0.0.6
breakingVersion 0.0.6 changed the import path from `qwen_asr` (previously it may have been `qwenasr`).
fix
Use `from qwen_asr import ...` instead of `import qwenasr`.
affects: 0.0.6
deprecatedThe `transcribe()` method's `return_dict` argument is deprecated; output structure changed in 0.0.6.
fix
Remove `return_dict` parameter; use plain call: `model.transcribe('file.wav')`.
affects: 0.0.5
Upgrade
Version history
0.0.6latest on PyPI · released Jan 30, 2026
Audit
Dependencies
torchrequiredRequired for model inference
transformersrequiredProvides Qwen model classes
ffmpegrequiredAudio file processing
Agent activity
13 hits · last 30 days
node
12
OpenAI (training)
1
Resources
qwen-asr — pip install qwen-asr · libregistry