From 9bd1653b5e6c154e5e02fee59be3fb550a92c6bf Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 30 Oct 2024 19:35:48 -0400 Subject: [PATCH] Update README.md --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index dfee5f5..53203c4 100644 --- a/README.md +++ b/README.md @@ -118,8 +118,6 @@ To continue the conversation, you can call `conversation.send()` again, which re You can use the `Session` class to set default parameters for all calls: ```python -import simplemind as sm - # Create a session with defaults gpt_4o_mini = sm.Session(llm_provider="openai", llm_model="gpt-4o-mini") @@ -142,9 +140,6 @@ response = gpt_4o_mini.generate_text( Harnessing the power of Python, you can easily create your own plugins to add additional functionality to your conversations: ```python -import simplemind as sm - - class SimpleMemoryPlugin: def __init__(self): self.memories = [