momondi commited on
Commit
2b6ddaf
·
verified ·
1 Parent(s): 3e804c5

Updated the groq api key

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,7 +16,7 @@ for i in range(len(df)):
16
 
17
  # Get the secret key from the environment
18
  import os
19
- groq_api_key = userdata.get('groq_api_key')
20
 
21
  #LLM Used for RAG
22
  from langchain_groq import ChatGroq
 
16
 
17
  # Get the secret key from the environment
18
  import os
19
+ groq_api_key = os.environ.get('groq_api_key')
20
 
21
  #LLM Used for RAG
22
  from langchain_groq import ChatGroq