From 51697d3216a29c143d241d028f8b4102e40246ac Mon Sep 17 00:00:00 2001 From: naa <44613678+naa7@users.noreply.github.com> Date: Fri, 28 Apr 2023 00:10:34 -0400 Subject: Updated README.md There is no need for logging as it takes so much space of terminal window. Also, added a print statement to add a line at the end of the Bot's response. --- forefront/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/forefront/README.md b/forefront/README.md index 5b084af5..a2be8187 100644 --- a/forefront/README.md +++ b/forefront/README.md @@ -4,7 +4,7 @@ import forefront # create an account -token = forefront.Account.create(logging=True) +token = forefront.Account.create(logging=False) print(token) # get a response @@ -12,4 +12,5 @@ for response in forefront.StreamingCompletion.create(token = token, prompt = 'hello world', model='gpt-4'): print(response.completion.choices[0].text, end = '') -``` \ No newline at end of file +print("") +``` -- cgit v1.2.3