mirror of
https://github.com/kharonsec/ollama-python
synced 2026-04-25 15:14:55 +02:00
7 lines
208 B
Python
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)
|