Update utils/helper.py
Browse files- utils/helper.py +1 -1
utils/helper.py
CHANGED
|
@@ -3,7 +3,7 @@ from openai import OpenAI
|
|
| 3 |
|
| 4 |
|
| 5 |
class ChatBot:
|
| 6 |
-
def __init__(self, protocol: str = "You are a helpful assistant.", conversation
|
| 7 |
self.client = OpenAI(api_key=os.environ["OPENAI_API_KEY"])
|
| 8 |
self.protocol = protocol
|
| 9 |
self.conversation = conversation
|
|
|
|
| 3 |
|
| 4 |
|
| 5 |
class ChatBot:
|
| 6 |
+
def __init__(self, protocol: str = "You are a helpful assistant.", conversation):
|
| 7 |
self.client = OpenAI(api_key=os.environ["OPENAI_API_KEY"])
|
| 8 |
self.protocol = protocol
|
| 9 |
self.conversation = conversation
|