gpt4free-original/forefront
t.me/xtekky c65875f3b0
Merge branch 'main' into STREAMLIT_CHAT_IMPLEMENTATION
2023-04-29 00:04:16 +01:00
..
README.md
__init__.py Merge branch 'main' into STREAMLIT_CHAT_IMPLEMENTATION 2023-04-29 00:04:16 +01:00
mail.py
typing.py

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