|
import os |
|
import streamlit as st |
|
from PyPDF2 import PdfReader |
|
from groq import Groq |
|
|
|
|
|
st.title("Pakistani Constitution Q&A App") |
|
st.write("Upload the Pakistani Constitution PDF, explore sections, and ask questions.") |
|
|
|
|
|
GROQ_API_KEY = os.getenv("GROQ_API_KEY") |
|
|
|
if not GROQ_API_KEY: |
|
st.error("Groq API key not found. Please set the 'GROQ_API_KEY' environment variable in Hugging Face Spaces settings.") |
|
else: |
|
client = Groq(api_key=GROQ_API_KEY) |
|
|
|
|
|
uploaded_file = st.file_uploader("Upload PDF", type=["pdf"]) |
|
|
|
|
|
sections = { |
|
"Preamble": (0, 1), |
|
"Fundamental Rights": (2, 10), |
|
|
|
} |
|
|
|
|
|
def extract_text_from_pdf(pdf_file, start_page, end_page): |
|
try: |
|
reader = PdfReader(pdf_file) |
|
text = "" |
|
for page in range(start_page, end_page + 1): |
|
text += reader.pages[page].extract_text() |
|
return text.strip() |
|
except Exception as e: |
|
st.error(f"Error extracting text from PDF: {e}") |
|
return "" |
|
|
|
|
|
if uploaded_file: |
|
st.success("PDF uploaded successfully.") |
|
selected_section = st.selectbox("Select a Section", list(sections.keys())) |
|
|
|
if selected_section: |
|
start_page, end_page = sections[selected_section] |
|
section_text = extract_text_from_pdf(uploaded_file, start_page, end_page) |
|
|
|
if section_text: |
|
st.text_area("Selected Section Text", section_text, height=300) |
|
|
|
|
|
question = st.text_input("Ask a question about this section:") |
|
|
|
if question: |
|
|
|
try: |
|
st.info("Querying Groq API...") |
|
chat_completion = client.chat.completions.create( |
|
messages=[ |
|
{ |
|
"role": "user", |
|
"content": f"Based on this section of the Pakistani Constitution: {section_text}\nQuestion: {question}", |
|
} |
|
], |
|
model="llama-3.3-70b-versatile", |
|
) |
|
|
|
answer = chat_completion.choices[0].message.content |
|
st.success(f"Answer: {answer}") |
|
except Exception as e: |
|
st.error(f"Error communicating with Groq API: {e}") |
|
else: |
|
st.warning("Please upload a PDF file to proceed.") |
|
|