qwen/qwen3.6-plus
Alibaba Cloud Qwen 3.6 Plus is the flagship model of the Qwen 3.6 series with a 1-million-token context window and up to 65K output tokens. Features always-on chain-of-thought reasoning, strong agentic coding and front-end development capabilities, tool calling, and streaming. Accessed via OpenAI-compatible interface.
Source : official_x0.5 · Vérifié le 2026-06-17
Lecture cache $0.025/M · Écriture cache $—/M
Utilisez l'un ou l'autre des IDs pour appeler ce modèle via l'API.
qwen/qwen3.6-plusRemplacez le placeholder ONEHOP_KEY par votre API key. Créer →
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-plus",
messages=[{"role": "user", "content": "What is the meaning of life?"}],
)
print(completion.choices[0].message.content)