Waseem7711 commited on
Commit
ed85eec
·
verified ·
1 Parent(s): 67e185f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -3,6 +3,12 @@ import pdfplumber
3
  import streamlit as st
4
  from groq import Groq
5
 
 
 
 
 
 
 
6
  # Fetch the Groq API key from environment variables
7
  api_key = os.environ.get("GROQ_API_KEY")
8
  if not api_key:
 
3
  import streamlit as st
4
  from groq import Groq
5
 
6
+ import os
7
+ import streamlit as st
8
+
9
+ st.write("Environment Variables:")
10
+ st.write(dict(os.environ))
11
+
12
  # Fetch the Groq API key from environment variables
13
  api_key = os.environ.get("GROQ_API_KEY")
14
  if not api_key: