Update README.md

This commit is contained in:
2024-11-02 17:06:12 -04:00
committed by GitHub
parent 1aeeb9127d
commit cb969dec4c
+1 -4
View File
@@ -189,10 +189,7 @@ conversation = gpt_4o_mini.create_conversation()
This maintains the simplicity of the original API while reducing repetition. The session object also supports overriding defaults on a per-call basis:
```python
response = gpt_4o_mini.generate_text(
"Complex task here",
llm_model="gpt-4"
)
response = gpt_4o_mini.generate_text("Complex task here", llm_model="gpt-4")
```
### Basic Memory Plugin