summaryrefslogtreecommitdiffstats
path: root/quora/README.md
diff options
context:
space:
mode:
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