import ollama
from IPython.display import Markdown, display
response1 = ollama.chat(
model='llama3.2-vision',
messages = [{"role": "user",
"content": "Who wrote the book Lord of the Rings?"
}]
)
display(Markdown(response1.message.content))