1
0
Fork 0
GPT4FREE/theb/README.md
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

254 B

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