meesamraza commited on
Commit
6e2aa61
·
verified ·
1 Parent(s): 5fe15a6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -6
app.py CHANGED
@@ -13,12 +13,6 @@ from typing import Optional, List # Added Optional and List
13
 
14
  # --- 0. FIX: SET PAGE CONFIG AS THE FIRST STREAMLIT COMMAND ---
15
  st.set_page_config(layout="wide", page_title="Quantum Scrutiny Platform | Groq-Powered")
16
-
17
- # --- 1. CONFIGURATION AND INITIALIZATION ---
18
-
19
- # FIX for .env on local machine: Load environment variables by explicitly pointing up one directory.
20
- load_dotenv(os.path.join(os.path.dirname(__file__), '..', '.env'))
21
-
22
  # FIX for Hugging Face Deployment: Read the key from the environment/Secrets.
23
  GROQ_API_KEY = os.getenv("GROQ_API_KEY")
24
 
 
13
 
14
  # --- 0. FIX: SET PAGE CONFIG AS THE FIRST STREAMLIT COMMAND ---
15
  st.set_page_config(layout="wide", page_title="Quantum Scrutiny Platform | Groq-Powered")
 
 
 
 
 
 
16
  # FIX for Hugging Face Deployment: Read the key from the environment/Secrets.
17
  GROQ_API_KEY = os.getenv("GROQ_API_KEY")
18