From c5c99a05fd253300a0a0179a349c543c6bef4e3c Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 2 Nov 2024 17:06:47 -0400 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 40571b0..5ac4363 100644 --- a/README.md +++ b/README.md @@ -186,7 +186,9 @@ response = gpt_4o_mini.generate_text("Hello!") 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: +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")