1
0
Fork 0
GPT4FREE/gpt4free/theb
t.me/xtekky bcd8592710
Merge branch 'main' into feature/delete_poe_account
2023-05-01 18:25:14 +01:00
..
README.md theb: multiple messages 2023-05-01 17:53:32 +05:00
__init__.py Merge branch 'main' into feature/delete_poe_account 2023-05-01 18:25:14 +01:00
theb_test.py refactored code 2023-04-29 15:50:18 +05:30

README.md

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