summaryrefslogtreecommitdiffstats
path: root/quora/README.md
diff options
context:
space:
mode:
authorRaju Komati <komatiraju032@gmail.com>2023-04-24 10:22:43 +0200
committerRaju Komati <komatiraju032@gmail.com>2023-04-24 10:22:43 +0200
commit2200e777c16687c22dad2cc8759b590ac9a83d6a (patch)
treeac58d7ad36e4de8f828a337cac5b065e80075f90 /quora/README.md
parentadded create bot method in Poe class (diff)
downloadgpt4free-2200e777c16687c22dad2cc8759b590ac9a83d6a.tar
gpt4free-2200e777c16687c22dad2cc8759b590ac9a83d6a.tar.gz
gpt4free-2200e777c16687c22dad2cc8759b590ac9a83d6a.tar.bz2
gpt4free-2200e777c16687c22dad2cc8759b590ac9a83d6a.tar.lz
gpt4free-2200e777c16687c22dad2cc8759b590ac9a83d6a.tar.xz
gpt4free-2200e777c16687c22dad2cc8759b590ac9a83d6a.tar.zst
gpt4free-2200e777c16687c22dad2cc8759b590ac9a83d6a.zip
Diffstat (limited to 'quora/README.md')
-rw-r--r--quora/README.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/quora/README.md b/quora/README.md
index ca50f644..ea87d1c0 100644
--- a/quora/README.md
+++ b/quora/README.md
@@ -52,7 +52,12 @@ print(response.completion.choices[0].text)
```python
from quora import Poe
-poe = Poe(model='sage')
+# available models: ['Sage', 'GPT-4', 'Claude+', 'Claude-instant', 'ChatGPT', 'Dragonfly', 'NeevaAI']
+
+poe = Poe(model='gpt-3.5-turbo')
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