mirror of
https://github.com/kennethreitz/simplemind.git
synced 2026-06-05 22:50:18 +00:00
14 lines
254 B
Python
14 lines
254 B
Python
import simplemind as sm
|
|
from pydantic import BaseModel
|
|
|
|
|
|
conversation = sm.create_conversation(llm_model="grok-beta", llm_provider="xai")
|
|
|
|
conversation.add_message(
|
|
role="user",
|
|
text="Write a poem about love",
|
|
)
|
|
r = conversation.send()
|
|
|
|
print(r)
|