Update app.py
Browse files
app.py
CHANGED
|
@@ -7,8 +7,8 @@ import streamlit as st
|
|
| 7 |
load_dotenv()
|
| 8 |
|
| 9 |
# Ensure that the API key is loaded correctly
|
| 10 |
-
GROQ_API_KEY =
|
| 11 |
-
client =Groq(api_key =GROQ_API_KEY)
|
| 12 |
|
| 13 |
if not api_key:
|
| 14 |
st.error("API key is missing! Please check your .env file or set the environment variable.")
|
|
|
|
| 7 |
load_dotenv()
|
| 8 |
|
| 9 |
# Ensure that the API key is loaded correctly
|
| 10 |
+
GROQ_API_KEY = "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"
|
| 11 |
+
client = Groq(api_key =GROQ_API_KEY)
|
| 12 |
|
| 13 |
if not api_key:
|
| 14 |
st.error("API key is missing! Please check your .env file or set the environment variable.")
|