Qwen3.7 Maxは、Alibabaが提供する最も高性能なQwenモデルであり、強力な推論、コーディング、マルチモーダルな視覚理解を兼ね備えています。複雑なエンタープライズワークロード、多言語生成、テキストに加えて画像入力を活用するタスクに最適な選択肢です。
OpenAIの直接代替。base_urlとモデルのみ変更。
# Python - pip install openai from openai import OpenAI client = OpenAI( base_url="https://meshtok.com/v1", api_key="sk-your-MeshTok-key", ) resp = client.chat.completions.create( model="ali/qwen3.7-max", messages=[{"role":"user","content":"Hello!"}], ) print(resp.choices[0].message.content)
# cURL curl https://meshtok.com/v1/chat/completions \ -H "Authorization: Bearer sk-your-MeshTok-key" \ -H "Content-Type: application/json" \ -d '{"model":"ali/qwen3.7-max","messages":[{"role":"user","content":"Hello!"}]}'
検討できる他のモデル。
Multilingual embeddings from the Qwen family.
Strong value mid-tier Qwen.
Code-specialized Qwen for developers.
Multimodal vision model.