Qwen3.6-Flash
Creates a model response for the given chat conversation. Qwen3.6-Flash supports text, image, and video inputs.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
Model ID
qwen3.6-flash "qwen3.6-flash"
A list of messages comprising the conversation so far. Content can be a string or an array of content parts for multi-modal input.
1{
"text-only": [{ "role": "user", "content": "Hello!" }]
}{
"image-input": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Describe this image."
},
{
"type": "image_url",
"image_url": { "url": "https://example.com/photo.jpg" }
}
]
}
]
}{
"video-input": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Summarize this video."
},
{
"type": "video_url",
"video_url": { "url": "https://example.com/sample.mp4" }
}
]
}
]
}The maximum number of tokens to generate.
1 <= x <= 65536Sampling temperature. Higher values make output more random.
0 <= x <= 21
Nucleus sampling threshold.
0 <= x <= 1Penalizes repeated tokens based on their frequency in the text so far.
-2 <= x <= 2Penalizes tokens that have already appeared in the text.
-2 <= x <= 2If true, stream partial message deltas using SSE.
Enable reasoning capability. When true, returns reasoning_content alongside content.
Sequences where the model will stop generating further tokens. Must be an array, e.g. [".", "?"]