mirror of
https://github.com/kennethreitz/simplemind.git
synced 2026-06-05 22:50:18 +00:00
10 lines
153 B
Python
10 lines
153 B
Python
import simplemind as sm
|
|
|
|
res = sm.generate_text(
|
|
prompt="Wish you a happy Diwali!",
|
|
llm_model="gpt-4o",
|
|
llm_provider="openai",
|
|
)
|
|
|
|
print(res)
|