mirror of
https://github.com/kennethreitz/simplemind.git
synced 2026-06-05 22:50:18 +00:00
8 lines
214 B
Python
8 lines
214 B
Python
import simplemind as sm
|
|
|
|
conversation = sm.create_conversation()
|
|
conversation.add_message(role="user", text="Hello, how are you? Do you like poetry?")
|
|
r = conversation.send(llm_provider="anthropic")
|
|
|
|
print(r.text)
|