Loading model details...
Fetching the latest models and pricing from the API.
Loading model details...
Fetching the latest models and pricing from the API.
Qwen3.5-397B-A17B is Alibaba's flagship open-source model — the first in the Qwen3.5 series (released February 16, 2026) and the most capable open-weight model in the family. It is a native multimodal model trained from scratch on trillions of text, image, and video tokens using early fusion across 201 languages. With 397B total parameters and 17B active per token, it outperforms all Qwen3-VL models on vision tasks while matching or exceeding text-only frontiers. The hosted version is called Qwen3.5-Plus.
/ 1M input tokens
/ 1M output tokens
from openai import OpenAI
# Initialize the OpenAI client with Qubrid base URL
client = OpenAI(
base_url="https://qubrid.com/v1",
api_key="QUBRID_API_KEY",
)
response = client.chat.completions.create(
model="Qwen/Qwen3.5-397B-A17B",
messages=[
{
"role": "user",
"content": [
{
"type": "text",
"text": "What is in this image? Describe the main elements."
},
{
"type": "image_url",
"image_url": {
"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg"
}
}
]
}
],
max_tokens=16384,
temperature=0.6,
top_p=0.95,
stream=False,
extra_body={
"enable_thinking": False,
}
)
print(response.choices[0].message.content)from openai import OpenAI
# Initialize the OpenAI client with Qubrid base URL
client = OpenAI(
base_url="https://qubrid.com/v1",
api_key="QUBRID_API_KEY",
)
response = client.chat.completions.create(
model="Qwen/Qwen3.5-397B-A17B",
messages=[
{
"role": "user",
"content": [
{
"type": "text",
"text": "What is in this image? Describe the main elements."
},
{
"type": "image_url",
"image_url": {
"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg"
}
}
]
}
],
max_tokens=16384,
temperature=0.6,
top_p=0.95,
stream=False,
extra_body={
"enable_thinking": False,
}
)
print(response.choices[0].message.content)Example response
The image shows a clear visual scene with distinct subjects, background context, and balanced composition. Notable elements include primary objects, spatial layout, color and lighting, and any readable text or symbols that support a concise description.
from openai import OpenAI
# Initialize the OpenAI client with Qubrid base URL
client = OpenAI(
base_url="https://qubrid.com/v1",
api_key="QUBRID_API_KEY",
)
response = client.chat.completions.create(
model="Qwen/Qwen3.5-397B-A17B",
messages=[
{
"role": "user",
"content": [
{
"type": "text",
"text": "What is in this image? Describe the main elements."
},
{
"type": "image_url",
"image_url": {
"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg"
}
}
]
}
],
max_tokens=16384,
temperature=0.6,
top_p=0.95,
stream=False,
extra_body={
"enable_thinking": False,
}
)
print(response.choices[0].message.content)from openai import OpenAI
# Initialize the OpenAI client with Qubrid base URL
client = OpenAI(
base_url="https://qubrid.com/v1",
api_key="QUBRID_API_KEY",
)
response = client.chat.completions.create(
model="Qwen/Qwen3.5-397B-A17B",
messages=[
{
"role": "user",
"content": [
{
"type": "text",
"text": "What is in this image? Describe the main elements."
},
{
"type": "image_url",
"image_url": {
"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg"
}
}
]
}
],
max_tokens=16384,
temperature=0.6,
top_p=0.95,
stream=False,
extra_body={
"enable_thinking": False,
}
)
print(response.choices[0].message.content)Example response
The image shows a clear visual scene with distinct subjects, background context, and balanced composition. Notable elements include primary objects, spatial layout, color and lighting, and any readable text or symbols that support a concise description.
Multimodal messages with image_url • Streaming and tool calls supported Open in Playground for streaming, files, and all parameters.
Open in Playground