freegpt-webui / g4f /.v1 /testing /forefront_test.py
monra's picture
Adds all providers from the original API
d4adf88
raw
history blame
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='')