1
0
Fork 0
GPT4FREE/theb
naa 210f8958ce
updated README.md
A print statement to add a newline after iterating through the loop
2023-04-27 23:51:52 -04:00
..
__init__.py theb.ai 2023-04-27 19:32:39 +01:00
README.md updated README.md 2023-04-27 23:51:52 -04:00
theb_test.py theb.ai 2023-04-27 19:32:39 +01:00

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