gpt4free-original/gpt4free/theb/README.md

15 行
281 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
2023-04-29 18:25:24 +09:00
from gpt4free import theb
2023-04-28 03:32:39 +09:00
# simple streaming completion
2023-05-01 21:53:32 +09:00
while True:
x = input()
for token in theb.Completion.create(x):
print(token, end='', flush=True)
print("")
```