diff --git a/README.md b/README.md index 6aa8736..bf37745 100644 --- a/README.md +++ b/README.md @@ -61,16 +61,13 @@ title='Eternal Embrace' content='In the quiet hours of the night,\nWhen stars wh SimpleMind also allows for easy conversational flows: -```python -conversation = sm.create_conversation(llm_model="gpt-4o-mini", llm_provider="openai") - -# Add a message to the conversation -conversation.add_message("user", "Hi there, how are you?") -``` - ```pycon ->>> reply = conversation.send() ->>> print(reply) +>>> conversation = sm.create_conversation(llm_model="gpt-4o-mini", llm_provider="openai") + +>>> # Add a message to the conversation +>>> conversation.add_message("user", "Hi there, how are you?") + +>>> conversation.send() ```