mirror of
https://github.com/kennethreitz/simplemind.git
synced 2026-06-05 22:50:18 +00:00
10 lines
236 B
Python
10 lines
236 B
Python
from simplemind import SimpleMind
|
|
|
|
sm = SimpleMind()
|
|
|
|
# The provider will automatically use OPENAI_API_KEY from environment
|
|
conversation = sm.create_conversation()
|
|
r = sm.add_message(conversation.id, "Who is Kenneth Reitz?")
|
|
print(r)
|
|
#
|