Files
ollama-python/examples/simple-generate/main.py
Michael Yang e8a66b8de1 examples
2023-12-21 17:00:31 -08:00

6 lines
113 B
Python

from ollama import generate
response = generate('mistral', 'Why is the sky blue?')
print(response['response'])