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