1
0
Fork 0
GPT4FREE/theb/README.md
naa 210f8958ce
updated README.md
A print statement to add a newline after iterating through the loop
2023-04-27 23:51:52 -04:00

13 lines
254 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)
print("")
```