Overview
About this model
The Qwen3-ASR family includes Qwen3-ASR-1.7B and Qwen3-ASR-0.6B, which support language identification and ASR for 52 languages and dialects. Both leverage large-scale speech training data and the strong audio understanding capability of their foundation model, Qwen3-Omni. Experiments show that the 1.7B version achieves state-of-the-art performance among open-source ASR models and is competitive with the strongest proprietary commercial APIs.
View model card on HuggingFaceSpecifications
Model details
- Provider
- Alibaba
- Modality
- Speech-to-text
- Pricing
- $0.05 / 1M tok
API
Call it in code
One OpenAI-compatible API. Swap the model id and you're done.
from openai import OpenAI
client = OpenAI(
base_url="https://api.ecohash.com/v1",
api_key="YOUR_API_KEY",
)
transcript = client.audio.transcriptions.create(
model="qwen3-asr-1-7b",
file=open("audio.mp3", "rb"),
)More models