gpt4free/gpt4free/theb
t.me/xtekky 823b7fb6f4 initial commit 2023-04-30 23:30:31 +01:00
..
README.md initial commit 2023-04-30 23:30:31 +01:00
__init__.py initial commit 2023-04-30 23:30:31 +01:00
theb_test.py initial commit 2023-04-30 23:30:31 +01:00

README.md

Example: theb (use like openai pypi package)

# import library
from gpt4free import theb

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