curl https://api.runpod.ai/v2/xxxxxxxx/openai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer rpa_xxxxxxxxxxxxxxxx" \
-d '{
"model": "Qwen/Qwen2.5-VL-3B-Instruct",
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Describe this image."
},
{
"type": "image_url",
"image_url": {
"url": "https://www.site.com/images.jpeg"
}
}
]
}
],
"max_tokens": 1000,
"temperature": 0.7
}'
curl https://api.runpod.ai/v2/xxxxxxxx/openai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer rpa_xxxxxxxxxxxxxxxx" \
-d '{
"model": "Qwen/Qwen2.5-VL-3B-Instruct",
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Describe this image."
},
{
"type": "image_url",
"image_url": {
"url": "https://www.site.com/images.jpeg"
}
}
]
}
],
"max_tokens": 1000,
"temperature": 0.7
}'