返回提交历史
Modified
theb/README.md
+2
-1
XFEstudio/gpt4free
updated README.md
A print statement to add a newline after iterating through the loop
210f8958
代码差异
1 个文件
+2
-1
@@ -8,4 +8,5 @@ import theb
8
8
# simple streaming completion
9
9
for token in theb.Completion.create('hello world'):
10
10
print(token, end='', flush=True)
11
```
11
print("")
12
```