1
0
Fork 0

Typo correction in forefront README

This commit is contained in:
sagadav 2023-05-01 14:49:18 +05:00
parent 2ae26bfa7e
commit 6476547628
1 changed files with 6 additions and 3 deletions

View File

@ -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("")
```