mirror of
https://github.com/kennethreitz/simplemind.git
synced 2026-06-05 22:50:18 +00:00
10 lines
238 B
Python
10 lines
238 B
Python
from _context import sm
|
|
|
|
conversation = sm.create_conversation(llm_model="gpt-4o", llm_provider="openai")
|
|
|
|
conversation.add_message(
|
|
"user", "Translate the following text to French: 'Hello, world!'"
|
|
)
|
|
|
|
print(conversation.send().text)
|