diff options
Diffstat (limited to 'quora/README.md')
-rw-r--r-- | quora/README.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/quora/README.md b/quora/README.md index a521e60c..fe9eed19 100644 --- a/quora/README.md +++ b/quora/README.md @@ -47,3 +47,17 @@ response = quora.Completion.create(model = 'gpt-4', print(response.completion.choices[0].text) ``` + +#### Update Use This For Poe +```python +from quora import Poe + +# available models: ['Sage', 'GPT-4', 'Claude+', 'Claude-instant', 'ChatGPT', 'Dragonfly', 'NeevaAI'] + +poe = Poe(model='ChatGPT') +poe.chat('who won the football world cup most?') + +# new bot creation +poe.create_bot('new_bot_name', prompt='You are new test bot', base_model='gpt-3.5-turbo') + +```
\ No newline at end of file |