starsaround's picture
Upload 183 files
f4b4235
|
raw
history blame contribute delete
No virus
416 Bytes
### 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("")
```