ollama run seamon67/Qwen3-VL:32b-thinking
curl http://localhost:11434/api/chat \
-d '{
"model": "seamon67/Qwen3-VL:32b-thinking",
"messages": [{"role": "user", "content": "Hello!"}]
}'
from ollama import chat
response = chat(
model='seamon67/Qwen3-VL:32b-thinking',
messages=[{'role': 'user', 'content': 'Hello!'}],
)
print(response.message.content)
import ollama from 'ollama'
const response = await ollama.chat({
model: 'seamon67/Qwen3-VL:32b-thinking',
messages: [{role: 'user', content: 'Hello!'}],
})
console.log(response.message.content)