diff options
Diffstat (limited to 'openai_rev/theb/README.md')
-rw-r--r-- | openai_rev/theb/README.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/openai_rev/theb/README.md b/openai_rev/theb/README.md new file mode 100644 index 00000000..bd37ba3f --- /dev/null +++ b/openai_rev/theb/README.md @@ -0,0 +1,10 @@ +### Example: `theb` (use like openai pypi package) <a name="example-theb"></a> + +```python +# import library +from openai_rev import theb + +# simple streaming completion +for token in theb.Completion.create('hello world'): + print(token, end='', flush=True) +```
\ No newline at end of file |