Raju Komati commited on
Commit
ceaa47b
·
unverified ·
1 Parent(s): a37920b

updated readme

Browse files
Files changed (1) hide show
  1. quora/README.md +9 -0
quora/README.md CHANGED
@@ -47,3 +47,12 @@ response = quora.Completion.create(model = 'gpt-4',
47
 
48
  print(response.completion.choices[0].text)
49
  ```
 
 
 
 
 
 
 
 
 
 
47
 
48
  print(response.completion.choices[0].text)
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
+ ```