Spaces:
Sleeping
Sleeping
update configuration
Browse files- .env +0 -1
- 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=
|
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()
|