NexAddo commited on
Commit
77d904c
1 Parent(s): 5f4962a

Update hackaprompt/completers.py

Browse files
Files changed (1) hide show
  1. hackaprompt/completers.py +1 -1
hackaprompt/completers.py CHANGED
@@ -77,7 +77,7 @@ class GPTCompletor(TextCompletion):
77
 
78
 
79
  class ChatGPTCompletor(TextCompletion):
80
- def __init__(self, openai_api_key, model):
81
  self.openai_api_key = os.getenv("OPENAI_API_KEY")
82
  self.model = model
83
 
 
77
 
78
 
79
  class ChatGPTCompletor(TextCompletion):
80
+ def __init__(self, model):
81
  self.openai_api_key = os.getenv("OPENAI_API_KEY")
82
  self.model = model
83