File size: 416 Bytes
f4b4235 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
### Example: `forefront` (use like openai pypi package) <a name="example-forefront"></a>
```python
from gpt4free import forefront
# create an account
account_data = forefront.Account.create(logging=False)
# get a response
for response in forefront.StreamingCompletion.create(
account_data=account_data,
prompt='hello world',
model='gpt-4'
):
print(response.choices[0].text, end='')
print("")
``` |