1
0
Fork 0
GPT4FREE/theb/README.md
t.me/xtekky ac96278d74 theb.ai
2023-04-27 19:32:39 +01:00

11 lines
No EOL
243 B
Markdown

### 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)
```