qwen/qwen3.6-flash
Alibaba Cloud Qwen 3.6 Flash is a fast, cost-efficient language model in the Qwen 3.6 series with a 1-million-token context window. Supports chain-of-thought reasoning, tool calling, and streaming. Optimised for high-throughput, latency-sensitive workloads. Accessed via OpenAI-compatible interface.
Fuente: official_x0.5 · Verificado el 2026-06-17
Lectura de caché $0.013/M · Escritura de caché $—/M
Puedes usar cualquiera de los IDs para llamar al modelo via API.
qwen/qwen3.6-flashReemplaza el marcador ONEHOP_KEY con tu API key. Crear →
from openai import OpenAI
client = OpenAI(
base_url="https://api.onehop.ai/v1",
api_key="<ONEHOP_KEY>",
)
completion = client.chat.completions.create(
model="qwen/qwen3.6-flash",
messages=[{"role": "user", "content": "What is the meaning of life?"}],
)
print(completion.choices[0].message.content)