songhune commited on
Commit
772fd80
·
1 Parent(s): 5a5ecc6

update configuration

Browse files
Files changed (2) hide show
  1. .env +0 -1
  2. chatbot_utils.py +2 -1
.env DELETED
@@ -1 +0,0 @@
1
- OPENAI_API_KEY=sk-proj-3IEelWYK3Wl251k9qNriT3BlbkFJ9M7GpUGBijobUj1LETdu
 
 
chatbot_utils.py CHANGED
@@ -4,8 +4,9 @@ import json
4
  from datetime import datetime
5
  from scenario_handler import ScenarioHandler
6
  import time
 
7
 
8
- client = OpenAI(api_key="sk-proj-3IEelWYK3Wl251k9qNriT3BlbkFJ9M7GpUGBijobUj1LETdu")
9
 
10
  def chatbot_response(response, handler_type='offender', n=1):
11
  scenario_handler = ScenarioHandler()
 
4
  from datetime import datetime
5
  from scenario_handler import ScenarioHandler
6
  import time
7
+ OPEN_API_KEY = "sk-proj-3IEelWYK3Wl251k9qNriT3BlbkFJ9M7GpUGBijobUj1LETdu"
8
 
9
+ client = OpenAI(api_key=OPEN_API_KEY)
10
 
11
  def chatbot_response(response, handler_type='offender', n=1):
12
  scenario_handler = ScenarioHandler()