Baltor Get started

Models

Qwen3-ASR Flash

By Alibaba. Unknown parameters, a context window of 53,248 tokens, licence Unknown.

Facts

Released
2025-09-08 the release date models.dev records models.dev, read
Licence
Unknown
Open weights
No models.dev records whether the weights are open models.dev, read
Parameters
Unknown
Active parameters
Unknown
Knowledge cutoff
2024-04 the knowledge cutoff models.dev records models.dev, read
Context window
  • 53,248 tokens the context limit models.dev records for the maker's own API models.dev, read
Longest output
  • 4,096 tokens the output limit models.dev records for the maker's own API models.dev, read
Tool calling
  • No models.dev records tool_call as false models.dev, read
Structured output
Unknown
Reasoning controls
  • No models.dev records reasoning as false models.dev, read
Inputs and outputs
audio in, text out models.dev, read
Good for
No source names a use.

Prices

Prices in US dollars per million tokens, as each source lists them
ProviderInputOutputContextAs ofSource
Alibaba direct0.035 USD0.035 USD53,248 older than 30 days; check the providermodels.dev, read

Run it on your own hardware

No source lists weight files or a parameter count for this model, so its memory needs are Unknown.

Use it from your harness

Set up for Alibaba with the model qwen3-asr-flash. Each endpoint page has the same setup for its own address.

OpenCode

Put this in opencode.json in your project folder:

{
  "$schema": "https://opencode.ai/config.json",
  "provider": {
    "alibaba": {
      "npm": "@ai-sdk/openai-compatible",
      "name": "Alibaba",
      "options": {
        "baseURL": "https://dashscope-intl.aliyuncs.com/compatible-mode/v1",
        "apiKey": "{env:DASHSCOPE_API_KEY}"
      },
      "models": {
        "qwen3-asr-flash": {
          "name": "Qwen3-ASR Flash",
          "limit": {
            "context": 53248,
            "output": 4096
          }
        }
      }
    }
  }
}
  • OpenCode reads any OpenAI-compatible address through the @ai-sdk/openai-compatible package, and an address that speaks the Responses API through @ai-sdk/openai.

From OpenCode documentation, read .

Pi

Put this in ~/.pi/agent/models.json:

{
  "providers": {
    "alibaba": {
      "baseUrl": "https://dashscope-intl.aliyuncs.com/compatible-mode/v1",
      "api": "openai-completions",
      "apiKey": "$DASHSCOPE_API_KEY",
      "models": [
        {
          "id": "qwen3-asr-flash"
        }
      ]
    }
  }
}
  • The apiKey field can name an environment variable as $NAME.

From Pi documentation, read .

Codex

Codex speaks only the Responses API, and Alibaba documents no Responses address. A gateway that offers one can sit in between.

  • Codex speaks the Responses API only: responses is the one supported wire API of a custom provider. Ollama and LM Studio are built in and start with --oss.

From Codex documentation, read .

Claude Code

Claude Code sends Anthropic Messages requests, and Alibaba documents no such address. A gateway that translates to that API can sit in between.

  • Claude Code sends Anthropic Messages requests to ANTHROPIC_BASE_URL. Anthropic says it does not support routing Claude Code to models other than Claude through any gateway, so some features may not work with another model.

From Claude Code documentation, read .

Sources of this page