Waseem7711 commited on
Commit
3334ac7
·
verified ·
1 Parent(s): de6a55c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -3,8 +3,13 @@ import pdfplumber
3
  import streamlit as st
4
  from groq import Groq
5
 
6
- # Set the Groq API key (you need to set this beforehand)
7
- client = Groq(api_key=os.environ.get("GROQ_API_KEY"))
 
 
 
 
 
8
 
9
  # Function to extract text from the PDF
10
  def extract_text_from_pdf(pdf_path):
@@ -37,7 +42,6 @@ def generate_response_with_retrieved_info(query, retrieved_text):
37
  ],
38
  model="llama3-8b-8192",
39
  )
40
-
41
  return chat_completion.choices[0].message.content
42
 
43
  # Main chatbot function
 
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:
9
+ raise ValueError("The GROQ_API_KEY environment variable is not set.")
10
+
11
+ # Initialize the Groq client
12
+ client = Groq(api_key=api_key)
13
 
14
  # Function to extract text from the PDF
15
  def extract_text_from_pdf(pdf_path):
 
42
  ],
43
  model="llama3-8b-8192",
44
  )
 
45
  return chat_completion.choices[0].message.content
46
 
47
  # Main chatbot function