freegpt4-duplicated / testing /forefront_test.py
pruth23's picture
Duplicate from pruth23/freegpt4
2f013d1
raw
history blame contribute delete
267 Bytes
from gpt4free import forefront
# create an account
token = forefront.Account.create(logging=True)
print(token)
# get a response
for response in forefront.StreamingCompletion.create(token=token, prompt='hello world', model='gpt-4'):
print(response.text, end='')