gpt4free-original/openai_rev/theb
noptuno 6f6a739872 Resolved merge conflicts and merged pr_218 into STREAMLIT_CHAT_IMPLEMENTATION 2023-04-27 20:40:47 -04:00
..
__pycache__ Resolved merge conflicts and merged pr_218 into STREAMLIT_CHAT_IMPLEMENTATION 2023-04-27 20:38:18 -04:00
README.md added theb to openai_rev module 2023-04-28 02:58:47 +05:30
__init__.py added theb to openai_rev module 2023-04-28 02:58:47 +05:30
theb_test.py added theb to openai_rev module 2023-04-28 02:58:47 +05:30

README.md

Example: theb (use like openai pypi package)

# import library
from openai_rev import theb

# simple streaming completion
for token in theb.Completion.create('hello world'):
    print(token, end='', flush=True)