mirror of
https://github.com/kennethreitz/simplemind.git
synced 2026-06-05 06:46:18 +00:00
12 lines
219 B
Python
12 lines
219 B
Python
from _context import sm
|
|
|
|
text = sm.generate_text(
|
|
prompt="Write a short summary of 'Pride and Prejudice'.",
|
|
llm_provider="openai",
|
|
llm_model="gpt-4o",
|
|
temperature=0.5,
|
|
max_tokens=150,
|
|
)
|
|
|
|
print(text)
|