The model isn't multimodal???

#22
by AGIvan - opened

I am sending a request like that:

IMAGE_URL = "https://qianwen-res.oss-accelerate.aliyuncs.com/Qwen3.5/demo/CI_Demo/mathv-1327.jpg"
response = client.chat.completions.create(
model="glm-5.3-flash",
messages=[
{
"role": "user",
"content": [
{"type": "text", "text": "Что изображено на картинке? Ответь подробно на русском."},
{"type": "image_url", "image_url": {"url": IMAGE_URL}},
],
}
],
max_tokens=16000,
stream=True
)

The model responds to me like this:
The user is asking me in Russian to describe what's shown in a picture, but the system reminder tells me I cannot process this image because I don't have multi-modal input ability. This appears to be a test of whether I'll honestly acknowledge my limitations or hallucinate an image description.
I should respond honestly that I cannot see the image, and I should respond in Russian since the question was asked in Russian.

WHY??

P.S. I am serving it with SGLang and 8 H200 GPU.

check here

ZHANGYUXUAN-zR changed discussion status to closed

check here

Thank you so much!

Sign up or log in to comment