gpt4free-original/theb/README.md

11 行
243 B
Markdown
Raw 通常表示 履歴

2023-04-28 03:32:39 +09:00
### 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)
```