Qwen Long
Qwen
qwen/qwen-long
10M context
Context Window
10.0M
10,000,000 tokens
Max Output
6K
6,000 tokens
About this model
10M ultra-long context for massive documents
This model supports up to 10M tokens of context.
Access it through Chuizi.AI with a single ck- API key β no separate Alibaba account needed.
Highlights
10M context window
6K max output
Multi-cloud failover
Unified billing via Chuizi.AI
Best For
Conversational AIContent generationSummarizationQ&A applications
2024-09-19
Capabilities
Chattoolspdf
Aliases
qwen-longPricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $0.07 |
| Output / 1M | $0.29 |
Final prices shown
Quick Start
main.py
from openai import OpenAI client = OpenAI( base_url="https://api.chuizi.ai/v1", api_key="ck-your-key-here", ) response = client.chat.completions.create( model="qwen/qwen-long", messages=[{"role": "user", "content": "Hello!"}], ) print(response.choices[0].message.content)