1
0
Fork 0
GPT4FREE/theb/README.md
t.me/xtekky ac96278d74 theb.ai
2023-04-27 19:32:39 +01:00

243 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)