Files
2023-12-21 17:00:31 -08:00

13 lines
194 B
Python

from ollama import chat
messages = [
{
'role': 'user',
'content': 'Why is the sky blue?',
},
]
response = chat('mistral', messages=messages)
print(response['message']['content'])