返回提交历史
Modified
quora/README.md
+5
-4
XFEstudio/gpt4free
Update README.md
Modified the style of warning
15d0150c
代码差异
1 个文件
+5
-4
@@ -1,4 +1,5 @@
1
#### warning !!!
1
2
> ⚠ Warning !!!
2
3
poe.com added security and can detect if you are making automated requests. You may get your account banned if you are using this api.
3
4
The normal non-driver api is also currently not very stable
4
5
@@ -16,7 +17,7 @@ models = {
16
17
}
17
18
```
18
19
19
#### !! new: bot creation
20
### New: bot creation
20
21
21
22
```python
22
23
# import quora (poe) package
@@ -43,7 +44,7 @@ for response in quora.StreamingCompletion.create(
43
44
print(response.completion.choices[0].text)
44
45
```
45
46
46
#### Normal Response:
47
### Normal Response:
47
48
```python
48
49
49
50
response = quora.Completion.create(model = 'gpt-4',
@@ -53,7 +54,7 @@ response = quora.Completion.create(model = 'gpt-4',
53
54
print(response.completion.choices[0].text)
54
55
```
55
56
56
#### Update Use This For Poe
57
### Update Use This For Poe
57
58
```python
58
59
from quora import Poe
59
60