gpt4free-original/gpt4free/forefront
MIDORIBIN 21715f4480 Support for new authentication methods 2023-05-08 00:29:23 +09:00
..
README.md Typo correction in forefront README 2023-05-01 14:56:49 +05:00
__init__.py Support for new authentication methods 2023-05-08 00:29:23 +09:00
typing.py Support for new authentication methods 2023-05-08 00:29:23 +09: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.choices[0].text, end='')
print("")