1
0
Fork 0
GPT4FREE/gpt4free/forefront
Akash Mondal afae71255f forefront: update account creation logic
* update account creation and verification as per latest forefont API

* use official Mail TM library pymailtm, instead of maintaining custom API code
2023-04-29 20:52:29 +05:30
..
__init__.py forefront: update account creation logic 2023-04-29 20:52:29 +05:30
README.md added gpt4free package 2023-04-29 14:55:24 +05:30
typing.py refactored the code 2023-04-29 15:08:10 +05:30

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