1
0
Fork 0

updated README.md

A print statement to add a newline after iterating through the loop
This commit is contained in:
naa 2023-04-27 23:51:52 -04:00 committed by GitHub
parent 25428d58d5
commit 210f8958ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,4 +8,5 @@ import theb
# simple streaming completion
for token in theb.Completion.create('hello world'):
print(token, end='', flush=True)
```
print("")
```