Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -3,8 +3,13 @@ import pdfplumber
|
|
3 |
import streamlit as st
|
4 |
from groq import Groq
|
5 |
|
6 |
-
#
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
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
|