You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gpt4free/theb
naa 210f8958ce
updated README.md
A print statement to add a newline after iterating through the loop
1 year ago
..
README.md updated README.md 1 year ago
__init__.py theb.ai 1 year ago
theb_test.py theb.ai 1 year ago

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