Qwen3.6-27B
ChatQwen/Qwen3.6-27B
Qwen3.6-27B on FlexAI: Alibaba LLM (Multimodal), Apache 2.0 license, served via the OpenAI-compatible Token Factory at the live market-tracked rate.
Context
256K tokens
API endpoint
/v1/chat/completions
Compatibility
OpenAI
Parameters
27B
License
Apache 2.0
Hardware
H100
Quantization
FP8
Estimate your monthly cost
M tokens
M tokens
10M × $0.263/M input$2.63
2M × $1.58/M output$3.16
Estimated monthly cost$5.79
Estimate only, at the current market-tracked rate. Usage-based; no minimums.
Get an API keyQuick Start
Qwen/Qwen3.6-27B
from openai import OpenAI
client = OpenAI(
base_url="https://tokens.flex.ai/v1",
api_key="your-api-key",
)
response = client.chat.completions.create(
model="Qwen/Qwen3.6-27B",
messages=[
{"role": "user", "content": "Hello!"}
],
)
print(response.choices[0].message.content)