qwen/qwen3.7-max
Alibaba Cloud Qwen 3.7 Max is the flagship model of the Qwen 3.7 series with a 1-million-token context window. Delivers top-tier chain-of-thought reasoning, coding, and tool use. Context caching cuts cached-input cost by 90%. Accessed via OpenAI-compatible interface.
Quelle: official_x0.5 · Verifiziert am 2026-06-17
Cache-Lesezugriff $0.125/M · Cache-Schreibzugriff $—/M
Zum API-Aufruf kann jede der IDs verwendet werden.
qwen/qwen3.7-maxErsetzen Sie den Platzhalter ONEHOP_KEY durch Ihren API key. Erstellen →
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-max",
messages=[{"role": "user", "content": "What is the meaning of life?"}],
)
print(completion.choices[0].message.content)