from ollama import chat

model='llama3.2', 
model='minimax-m3:cloud'

response = chat(
    model=model, 
    messages=[
        {
            'role': 'user',
            'content': 'Why is the sky blue?',
        },
    ]
)

# Print the resulting string response
print(response['message']['content'])
