Files
ollama-python/examples/generate/main.py
2024-01-18 11:20:36 -08:00

6 lines
113 B
Python

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