Rafa1986 commited on
Commit
9e68bae
·
verified ·
1 Parent(s): 6e9fdda

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 = "YOUR_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."""