Files
ollama-python/examples/chat/main.py
2024-01-18 11:20:36 -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'])