summaryrefslogtreecommitdiffstats
path: root/forefront
diff options
context:
space:
mode:
Diffstat (limited to 'forefront')
-rw-r--r--forefront/README.md5
-rw-r--r--forefront/__init__.py9
2 files changed, 9 insertions, 5 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("")
+```
diff --git a/forefront/__init__.py b/forefront/__init__.py
index 44f5d44d..615057f8 100644
--- a/forefront/__init__.py
+++ b/forefront/__init__.py
@@ -38,9 +38,12 @@ class Account:
"email_address": mail_adress
}
)
-
- trace_token = response.json()['response']['id']
- if logging: print(trace_token)
+
+ try:
+ trace_token = response.json()['response']['id']
+ if logging: print(trace_token)
+ except KeyError:
+ return 'Failed to create account!'
response = client.post(
f"https://clerk.forefront.ai/v1/client/sign_ups/{trace_token}/prepare_verification?_clerk_js_version=4.32.6",