starsaround's picture
Upload 183 files
f4b4235
|
raw
history blame contribute delete
No virus
416 Bytes

A newer version of the Gradio SDK is available: 4.39.0

Upgrade

Example: forefront (use like openai pypi package)

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("")