From cb969dec4c406f428a9125965dbe1bed2816142b Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 2 Nov 2024 17:06:12 -0400 Subject: [PATCH] Update README.md --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index f976f59..40571b0 100644 --- a/README.md +++ b/README.md @@ -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