Remove unused messages variable from thinking-generate example

This commit is contained in:
Hunter Wittenborn 2025-05-30 16:58:16 -05:00 committed by GitHub
parent ce6846e4fc
commit 4c11d507b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,12 +1,5 @@
from ollama import generate
messages = [
{
'role': 'user',
'content': 'What is 10 + 23?',
},
]
response = generate('deepseek-r1', 'why is the sky blue', think=True)
print('Thinking:\n========\n\n' + response.thinking)