summaryrefslogtreecommitdiffstats
path: root/gpt4free/forefront/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'gpt4free/forefront/README.md')
-rw-r--r--gpt4free/forefront/README.md9
1 files changed, 6 insertions, 3 deletions
diff --git a/gpt4free/forefront/README.md b/gpt4free/forefront/README.md
index 35ba9897..887097ec 100644
--- a/gpt4free/forefront/README.md
+++ b/gpt4free/forefront/README.md
@@ -6,8 +6,11 @@ from gpt4free import forefront
token = forefront.Account.create(logging=False)
print(token)
# get a response
-for response in forefront.StreamingCompletion.create(token=token,
- prompt='hello world', model='gpt-4'):
- print(response.completion.choices[0].text, end='')
+for response in forefront.StreamingCompletion.create(
+ token=token,
+ prompt='hello world',
+ model='gpt-4'
+):
+ print(response.choices[0].text, end='')
print("")
``` \ No newline at end of file