fix forefront sample

This commit is contained in:
MIDORIBIN 2023-05-08 01:31:14 +09:00
parent 21715f4480
commit 34fb3fc185

View File

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