Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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:
|