Overview
About this model
Qwen3-ASR-1.7B transcribes speech to text, served on EcoHash through an OpenAI-compatible API.
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