Thanks again for the reply.
I tried today again with Gemma 3:4B and it finally went through without any issues.
Is it because the docker was upgraded finally? Sorry if I sound weird as I am new to Linux and all this docker terminology 😅
Now I will just need to figure out myself on how to make the following command given by the Nvidia model site too to work on my Jetson Orin Nano:
curl http://0.0.0.0:9000/v1/chat/completions
-H “Content-Type: application/json”
-d ‘{
“messages”: [{
“role”: “user”,
“content”: [{
“type”: “text”,
“text”: “What is in this image?”
},
{
“type”: “image_url”,
“image_url”: {
“url”: “https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Gfp-wisconsin-madison-the-nature-boardwalk.jpg/2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg”
}
}
]}],
“max_tokens”: 300
}’