mirror of
https://github.com/kennethreitz/simplemind.git
synced 2026-06-05 22:50:18 +00:00
7 lines
211 B
Python
7 lines
211 B
Python
import simplemind as sm
|
|
|
|
conversation = sm.create_conversation(llm_model="gpt-4o-mini", llm_provider="openai")
|
|
conversation.add_message("user", "Hi there, how are you?")
|
|
reply = conversation.send()
|
|
print(reply)
|