qwen/qwen3.7-plus
Alibaba Cloud Qwen 3.7 Plus is a mid-tier model in the Qwen 3.7 series with a 1-million-token context window. Features chain-of-thought reasoning with up to 256K dedicated thinking tokens, tool calling, streaming, and a context cache that cuts repeated-context cost by up to 90%. Accessed via OpenAI-compatible interface.
المصدر: official_x0.5 · تم التحقق في 2026-06-17
قراءة الكاش $0.020/M · كتابة الكاش $—/M
يمكنك استخدام أي من المعرّفَين لاستدعاء هذا النموذج.
qwen/qwen3.7-plusاستبدل placeholder الـ ONEHOP_KEY بمفتاح API الخاص بك. إنشاء مفتاح →
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.7-plus",
messages=[{"role": "user", "content": "What is the meaning of life?"}],
)
print(completion.choices[0].message.content)