gpt4free/gpt4free/forefront
t.me/xtekky 823b7fb6f4 initial commit 2023-04-30 23:30:31 +01:00
..
README.md initial commit 2023-04-30 23:30:31 +01:00
__init__.py initial commit 2023-04-30 23:30:31 +01:00
typing.py initial commit 2023-04-30 23:30:31 +01:00

README.md

Example: forefront (use like openai pypi package)

from gpt4free import forefront
# create an account
token = forefront.Account.create(logging=False)
print(token)
# get a response
for response in forefront.StreamingCompletion.create(token=token,
                                                     prompt='hello world', model='gpt-4'):
    print(response.completion.choices[0].text, end='')
print("")