summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gpt4free/forefront/README.md13
1 files changed, 8 insertions, 5 deletions
diff --git a/gpt4free/forefront/README.md b/gpt4free/forefront/README.md
index 887097ec..7a59fe8e 100644
--- a/gpt4free/forefront/README.md
+++ b/gpt4free/forefront/README.md
@@ -2,15 +2,18 @@
```python
from gpt4free import forefront
+
+
# create an account
-token = forefront.Account.create(logging=False)
-print(token)
+account_data = forefront.Account.create(logging=False)
+
# get a response
for response in forefront.StreamingCompletion.create(
- token=token,
- prompt='hello world',
- model='gpt-4'
+ account_data=account_data,
+ prompt='hello world',
+ model='gpt-4'
):
print(response.choices[0].text, end='')
print("")
+
``` \ No newline at end of file