eagle0504 commited on
Commit
a5b3f30
·
verified ·
1 Parent(s): bb87ff9

Update utils/helper.py

Browse files
Files changed (1) hide show
  1. 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, conversation):
7
  self.client = OpenAI(api_key=os.environ["OPENAI_API_KEY"])
8
  self.protocol = protocol
9
  self.conversation = conversation