diff options
author | t.me/xtekky <98614666+xtekky@users.noreply.github.com> | 2023-04-25 12:24:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-25 12:24:35 +0200 |
commit | 746dd870b24ce2705dd37ace7dbc8a4077d952bd (patch) | |
tree | 9abddc05ec36399a18feaee47d564cdd7ae7d270 /quora/README.md | |
parent | gui folder (diff) | |
parent | Merge branch 'main' into fix/poe_account_creation (diff) | |
download | gpt4free-746dd870b24ce2705dd37ace7dbc8a4077d952bd.tar gpt4free-746dd870b24ce2705dd37ace7dbc8a4077d952bd.tar.gz gpt4free-746dd870b24ce2705dd37ace7dbc8a4077d952bd.tar.bz2 gpt4free-746dd870b24ce2705dd37ace7dbc8a4077d952bd.tar.lz gpt4free-746dd870b24ce2705dd37ace7dbc8a4077d952bd.tar.xz gpt4free-746dd870b24ce2705dd37ace7dbc8a4077d952bd.tar.zst gpt4free-746dd870b24ce2705dd37ace7dbc8a4077d952bd.zip |
Diffstat (limited to '')
-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 |