Compare

Qwen 3 Max vs Qwen3-Embedding-0.6b

Pricing per million tokens, context window, capabilities — pulled from each provider's public docs. All 2 are available via the same AIgateway OpenAI-compatible endpoint; flip the model string to switch.

Search2/4
Qwen 3 Max
alibaba/qwen3-max
Qwen3-Embedding-0.6b
qwen/qwen3-embedding-0.6b
Provider
Alibaba
Alibaba Qwen
Family
Qwen
Qwen
Modality
text
embedding
Context window
262,144 tok
Max output
32,768 tok
Released
2026-05-22
2025-06-18
License
Proprietary
Open-weight
Input price
$1.20 /1M
$0.012 /1M
Output price
$6.00 /1M
$0.0000 /1M
Tools
Streaming
yes
Vision
JSON mode
Reasoning
Prompt caching
Batch API
Try it
Open in playground →
View model →
Qwen 3 Max
alibaba/qwen3-max
Full spec →

Alibaba's Qwen 3 Max is a large language model with strong coding, reasoning, and multilingual capabilities, served via DashScope's OpenAI-compatible endpoint.

Strengths
  • General-purpose chat
  • Long context
  • Tool use
Use cases
ChatbotsContent generationAgentic workflows
Qwen3-Embedding-0.6b
qwen/qwen3-embedding-0.6b
Full spec →

The Qwen3 Embedding model series is the latest proprietary model of the Qwen family, specifically designed for text embedding and ranking tasks.

Strengths
  • Semantic similarity
  • Vector search
Use cases
RAGSemantic searchRecommendation

Compare with another

Qwen 3 Max vs GPT-5.4
alibaba/qwen3-max · openai/gpt-5.4
Qwen 3 Max vs Claude Opus 4.7
alibaba/qwen3-max · anthropic/claude-opus-4.7
Deepseek-R1-Distill-Qwen-32b vs Qwen3-Embedding-0.6b
deepseek/deepseek-r1-distill-qwen-32b · qwen/qwen3-embedding-0.6b
Qwen2.5-Coder-32b-Instruct vs Qwen3-Embedding-0.6b
qwen/qwen2.5-coder-32b-instruct · qwen/qwen3-embedding-0.6b
Qwen3-30b-A3b-Fp8 vs Qwen3-Embedding-0.6b
qwen/qwen3-30b-a3b-fp8 · qwen/qwen3-embedding-0.6b
Qwen3-Embedding-0.6b vs Qwq-32b
qwen/qwen3-embedding-0.6b · qwen/qwq-32b
Qwen 3.5 397B A17B vs Qwen3-Embedding-0.6b
alibaba/qwen3.5-397b-a17b · qwen/qwen3-embedding-0.6b
Qwen 3 Max vs Deepseek-R1-Distill-Qwen-32b
alibaba/qwen3-max · deepseek/deepseek-r1-distill-qwen-32b
Qwen 3 Max vs Qwen2.5-Coder-32b-Instruct
alibaba/qwen3-max · qwen/qwen2.5-coder-32b-instruct
SWITCH BETWEEN THEM

One key, all 2, one line different.

from openai import OpenAI

client = OpenAI(
    base_url="https://api.aigateway.sh/v1",
    api_key="sk-aig-...",
)

# Qwen 3 Max
client.chat.completions.create(
    model="alibaba/qwen3-max",
    messages=[{"role":"user","content":"hello"}],
)

# Qwen3-Embedding-0.6b
client.chat.completions.create(
    model="qwen/qwen3-embedding-0.6b",
    messages=[{"role":"user","content":"hello"}],
)
Get an AIgateway keyRun an eval on these →