返回提交历史
Modified
quora/README.md
+9
-0
XFEstudio/gpt4free
updated readme
ceaa47b9
代码差异
1 个文件
+9
-0
@@ -47,3 +47,12 @@ response = quora.Completion.create(model = 'gpt-4',
47
47
48
48
print(response.completion.choices[0].text)
49
49
```
50
51
#### Update Use This For Poe
52
```python
53
from quora import Poe
54
55
poe = Poe(model='sage')
56
poe.chat('who won the football world cup most?')
57
58
```