ollama-python/examples/thinking/thinking-generate.py
2025-09-24 15:10:00 -07:00

7 lines
208 B
Python

from ollama import generate
response = generate('deepseek-r1', 'why is the sky blue', think=True)
print('Thinking:\n========\n\n' + response.thinking)
print('\nResponse:\n========\n\n' + response.response)