Update README.md

This commit is contained in:
2024-10-30 19:35:48 -04:00
committed by GitHub
parent 59401c4be4
commit 9bd1653b5e
-5
View File
@@ -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 = [