gpt4free-original/gpt4free/theb
2023-05-04 19:13:58 +01:00
..
__init__.py Merge branch 'main' into main 2023-05-04 19:13:58 +01:00
README.md
theb_test.py

Example: theb (use like openai pypi package)

# import library
from gpt4free import theb

# simple streaming completion

while True:
	x = input()
	for token in theb.Completion.create(x):
		print(token, end='', flush=True)
	print("")