Spaces:
Running
Running
naveenvenkatesh
commited on
Commit
•
8fe9dc8
1
Parent(s):
72c95d6
Update incorrect_sentence_finder.py
Browse files
incorrect_sentence_finder.py
CHANGED
@@ -15,10 +15,11 @@ class IncorrectSentenceFinder:
|
|
15 |
Initialize the IncorrectSentenceFinder with the OpenAI API key.
|
16 |
"""
|
17 |
|
18 |
-
openai.api_type = os.getenv['api_type']
|
19 |
-
openai.api_base = os.getenv['api_base']
|
20 |
-
openai.api_version = os.getenv['api_version']
|
21 |
-
openai.api_key = os.getenv['api_key']
|
|
|
22 |
|
23 |
def _find_incorrect_sentence(self, text: str) -> str:
|
24 |
"""
|
|
|
15 |
Initialize the IncorrectSentenceFinder with the OpenAI API key.
|
16 |
"""
|
17 |
|
18 |
+
# openai.api_type = os.getenv['api_type']
|
19 |
+
# openai.api_base = os.getenv['api_base']
|
20 |
+
# openai.api_version = os.getenv['api_version']
|
21 |
+
# openai.api_key = os.getenv['api_key']
|
22 |
+
pass
|
23 |
|
24 |
def _find_incorrect_sentence(self, text: str) -> str:
|
25 |
"""
|