Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ def detect_language(text):
|
|
25 |
return response.choices[0].message.content.strip()
|
26 |
|
27 |
# Set up OpenAI API key (replace with your key)
|
28 |
-
openai.api_key = "
|
29 |
|
30 |
def extract_files_from_folder(folder_path):
|
31 |
"""Scans a folder and its subfolders for PDF, TXT, CSV, DOCX, and IPYNB files."""
|
|
|
25 |
return response.choices[0].message.content.strip()
|
26 |
|
27 |
# Set up OpenAI API key (replace with your key)
|
28 |
+
openai.api_key = os.getenv("OPENAI_API_KEY")
|
29 |
|
30 |
def extract_files_from_folder(folder_path):
|
31 |
"""Scans a folder and its subfolders for PDF, TXT, CSV, DOCX, and IPYNB files."""
|