mirror of
https://github.com/kennethreitz/simplemind.git
synced 2026-06-05 22:50:18 +00:00
10 lines
219 B
Python
10 lines
219 B
Python
from _context import sm
|
|
|
|
# Defaults to the default provider (openai)
|
|
r = sm.generate_text(
|
|
"Write a poem about the moon", llm_model="gpt-4o-mini", stream=True
|
|
)
|
|
|
|
for chunk in r:
|
|
print(chunk, end="", flush=True)
|