gpt4free/forefront
0dminnimda 88b4ebba3d
Print the mail messages only when logging
2023-04-28 19:31:51 +03:00
..
README.md Updated README.md 2023-04-28 00:10:34 -04:00
__init__.py Print the mail messages only when logging 2023-04-28 19:31:51 +03:00
mail.py Reformat code using PyCharm 2023-04-27 15:43:59 +01:00
typing.py Reformat code using PyCharm 2023-04-27 15:43:59 +01:00

README.md

Example: forefront (use like openai pypi package)

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