Models / QwenQwen / / Qwen2.5-VL 72B Instruct API
Qwen2.5-VL 72B Instruct API
Chat
Vision
Vision-language model with advanced visual reasoning, video understanding, structured outputs, and agentic capabilities.
Try our Qwen2.5-VL API

Qwen2.5-VL 72B Instruct API Usage
Endpoint
Qwen/Qwen2.5-VL-72B-Instruct
RUN INFERENCE
curl -X POST "https://api.together.xyz/v1/chat/completions" \
-H "Authorization: Bearer $TOGETHER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "Qwen/Qwen2.5-VL-72B-Instruct",
"messages": [
{
"role": "user",
"content": "What are some fun things to do in New York?"
}
]
}'
RUN INFERENCE
from together import Together
client = Together()
response = client.chat.completions.create(
model="Qwen/Qwen2.5-VL-72B-Instruct",
messages=[
{
"role": "user",
"content": "What are some fun things to do in New York?"
}
]
)
print(response.choices[0].message.content)
RUN INFERENCE
import Together from "together-ai";
const together = new Together();
const response = await together.chat.completions.create({
messages: [
{
role: "user",
content: "What are some fun things to do in New York?"
}
],
model: "Qwen/Qwen2.5-VL-72B-Instruct"
});
console.log(response.choices[0].message.content)