gpt4free / g4f /.v1 /testing /forefront_test.py
justest
update
96e2d26
raw
history blame
No virus
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='')