diff options
Diffstat (limited to 'ora/README.md')
-rw-r--r-- | ora/README.md | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/ora/README.md b/ora/README.md index b4ae0878..36bc2806 100644 --- a/ora/README.md +++ b/ora/README.md @@ -4,7 +4,14 @@ more gpt4 models in `/testing/ora_gpt4.py` +find the userid by visiting https://ora.sh/api/auth/session ( must be logged in on the site ) +and session_token in the cookies, it should be: __Secure-next-auth.session-token + ```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 +21,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', @@ -38,4 +46,4 @@ while True: conversationId = init.id) print(response.completion.choices[0].text) -```
\ No newline at end of file +``` |