diff options
Diffstat (limited to 'openai_rev/theb/theb_test.py')
-rw-r--r-- | openai_rev/theb/theb_test.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/openai_rev/theb/theb_test.py b/openai_rev/theb/theb_test.py new file mode 100644 index 00000000..805ef094 --- /dev/null +++ b/openai_rev/theb/theb_test.py @@ -0,0 +1,4 @@ +from openai_rev import theb + +for token in theb.Completion.create('hello world'): + print(token, end='', flush=True) |