summaryrefslogtreecommitdiffstats
path: root/ora/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'ora/README.md')
-rw-r--r--ora/README.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/ora/README.md b/ora/README.md
index b4ae0878..fb9f5974 100644
--- a/ora/README.md
+++ b/ora/README.md
@@ -5,6 +5,10 @@
more gpt4 models in `/testing/ora_gpt4.py`
```python
+# if using CompletionModel.load set these
+ora.user_id = '...'
+ora.session_token = '...'
+
# normal gpt-4: b8b12eaa-5d47-44d3-92a6-4d706f2bcacf
model = ora.CompletionModel.load(chatbot_id, 'gpt-4') # or gpt-3.5
```
@@ -14,6 +18,7 @@ model = ora.CompletionModel.load(chatbot_id, 'gpt-4') # or gpt-3.5
# import ora
import ora
+
# create model
model = ora.CompletionModel.create(
system_prompt = 'You are ChatGPT, a large language model trained by OpenAI. Answer as concisely as possible',