summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--forefront/README.md5
1 files 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("")
+```