From 4f38b4414559eddaa4183640e08db1165b1e6093 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 30 Oct 2024 18:29:18 -0400 Subject: [PATCH] Simplify Session class usage example in README for clarity --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index ffc9042..cb4606c 100644 --- a/README.md +++ b/README.md @@ -117,10 +117,7 @@ You can use the `Session` class to import simplemind as sm # Create a session with defaults -gpt_4o_mini = sm.Session( - llm_provider="openai", - llm_model="gpt-4o-mini" -) +gpt_4o_mini = sm.Session(llm_provider="openai", llm_model="gpt-4o-mini") # Now all calls use these defaults response = gpt_4o_mini.generate_text("Hello!")