summaryrefslogtreecommitdiffstats
path: root/theb/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'theb/README.md')
-rw-r--r--theb/README.md12
1 files changed, 0 insertions, 12 deletions
diff --git a/theb/README.md b/theb/README.md
deleted file mode 100644
index ca978fce..00000000
--- a/theb/README.md
+++ /dev/null
@@ -1,12 +0,0 @@
-### Example: `theb` (use like openai pypi package) <a name="example-theb"></a>
-
-
-```python
-# import library
-import theb
-
-# simple streaming completion
-for token in theb.Completion.create('hello world'):
- print(token, end='', flush=True)
-print("")
-```