gpt4free-original/theb
t.me/xtekky ac96278d74 theb.ai 2023-04-27 19:32:39 +01:00
..
README.md theb.ai 2023-04-27 19:32:39 +01:00
__init__.py theb.ai 2023-04-27 19:32:39 +01:00
theb_test.py theb.ai 2023-04-27 19:32:39 +01:00

README.md

Example: theb (use like openai pypi package)

# import library
import theb

# simple streaming completion
for token in theb.Completion.create('hello world'):
    print(token, end='', flush=True)