afae71255f
* update account creation and verification as per latest forefont API * use official Mail TM library pymailtm, instead of maintaining custom API code |
||
---|---|---|
.. | ||
__init__.py | ||
README.md | ||
typing.py |
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("")