File size: 7,856 Bytes
fddd403 f8d4638 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 | import streamlit as st
import os
import tempfile
from dotenv import load_dotenv
# Load environment variables
load_dotenv()
# Import required libraries
try:
from langchain_community.document_loaders import PyPDFLoader
from langchain_text_splitters import RecursiveCharacterTextSplitter
from langchain_core.documents import Document
from langchain_community.retrievers import BM25Retriever
from smolagents import Tool, CodeAgent, InferenceClientModel
except ImportError as e:
st.error(f"Missing dependency: {e}. Please install all requirements.")
st.stop()
# Custom Retriever Tool
class RetrieverTool(Tool):
name = "retriever"
description = "Uses semantic search to retrieve the parts of the research paper that could be most relevant to answer your query."
inputs = {
"query": {
"type": "string",
"description": "The query to perform. This should be semantically close to your target documents. Use the affirmative form rather than a question.",
}
}
output_type = "string"
def __init__(self, docs, **kwargs):
super().__init__(**kwargs)
self.retriever = BM25Retriever.from_documents(docs, k=10)
def forward(self, query: str) -> str:
"""Execute the retrieval based on the provided query."""
assert isinstance(query, str), "Your search query must be a string"
docs = self.retriever.invoke(query)
return "\nRetrieved documents:\n" + "".join([
f"\n\n===== Document {str(i)} (Page {doc.metadata.get('page', 'N/A')}) =====\n" + doc.page_content
for i, doc in enumerate(docs)
])
# Function to load and process PDF
@st.cache_resource
def load_and_process_pdf(pdf_path):
"""Load PDF and split into chunks for retrieval."""
try:
# Load PDF
loader = PyPDFLoader(pdf_path)
pages = loader.load()
# Split into chunks
text_splitter = RecursiveCharacterTextSplitter(
chunk_size=500,
chunk_overlap=50,
add_start_index=True,
strip_whitespace=True,
separators=["\n\n", "\n", ".", " ", ""],
)
docs_processed = text_splitter.split_documents(pages)
return docs_processed, len(pages)
except Exception as e:
st.error(f"Error processing PDF: {e}")
return None, 0
# Function to create agent
@st.cache_resource
def create_agent(_docs):
"""Create the RAG agent with retriever tool."""
retriever_tool = RetrieverTool(_docs)
# Use FREE Hugging Face model (Qwen 2.5 72B via serverless inference)
agent = CodeAgent(
tools=[retriever_tool],
model=InferenceClientModel(
model_id="Qwen/Qwen2.5-72B-Instruct",
token=os.getenv("HF_TOKEN")
),
max_steps=4,
verbosity_level=0,
)
return agent
# Streamlit UI
def main():
st.set_page_config(
page_title="PaperChat",
page_icon="π",
layout="wide"
)
# Header
st.title("π PaperChat - Research Paper Q&A Assistant")
st.markdown("""
Upload any research paper (PDF) and ask questions about it.
Powered by Agentic RAG with retrieval capabilities.
""")
# Sidebar
with st.sidebar:
st.header("π€ Upload Paper")
uploaded_file = st.file_uploader(
"Choose a PDF file",
type="pdf",
help="Upload a research paper in PDF format"
)
st.markdown("---")
st.subheader("π Example Questions")
st.markdown("""
- What is the main contribution of this paper?
- What methodology was used?
- What are the key results?
- What datasets were used?
- What are the limitations mentioned?
""")
st.markdown("---")
st.subheader("βΉοΈ How it works")
st.markdown("""
1. Upload your paper
2. The system chunks and indexes it
3. Ask questions naturally
4. Get answers with source citations
""")
# Main content area
if uploaded_file is not None:
# Save uploaded file to temporary location
with tempfile.NamedTemporaryFile(delete=False, suffix=".pdf") as tmp_file:
tmp_file.write(uploaded_file.read())
tmp_path = tmp_file.name
# Process PDF
with st.spinner("π Processing your paper... This may take a moment."):
docs, num_pages = load_and_process_pdf(tmp_path)
if docs:
st.success(f"β
Paper loaded successfully! ({num_pages} pages, {len(docs)} chunks)")
# Create agent
with st.spinner("π€ Initializing AI agent..."):
agent = create_agent(docs)
st.success("β
Agent ready! You can now ask questions.")
# Chat interface
st.markdown("---")
st.subheader("π¬ Ask Questions")
# Initialize chat history
if "messages" not in st.session_state:
st.session_state.messages = []
# Display chat history
for message in st.session_state.messages:
with st.chat_message(message["role"]):
st.markdown(message["content"])
# Chat input
if question := st.chat_input("Ask a question about the paper..."):
# Add user message to chat history
st.session_state.messages.append({"role": "user", "content": question})
# Display user message
with st.chat_message("user"):
st.markdown(question)
# Generate response
with st.chat_message("assistant"):
with st.spinner("π€ Thinking..."):
try:
answer = agent.run(question)
st.markdown(answer)
# Add assistant response to chat history
st.session_state.messages.append({"role": "assistant", "content": answer})
except Exception as e:
error_msg = f"Error generating answer: {str(e)}"
st.error(error_msg)
st.session_state.messages.append({"role": "assistant", "content": error_msg})
# Clear chat button
if st.button("ποΈ Clear Chat History"):
st.session_state.messages = []
st.rerun()
# Cleanup temp file
try:
os.unlink(tmp_path)
except:
pass
else:
# Welcome message when no file is uploaded
st.info("π Please upload a research paper PDF from the sidebar to get started.")
st.markdown("### π― What can you do with PaperChat?")
col1, col2, col3 = st.columns(3)
with col1:
st.markdown("""
#### π Understand Papers
- Get summaries of complex papers
- Understand methodology
- Learn about key findings
""")
with col2:
st.markdown("""
#### π Extract Information
- Find specific details
- Locate datasets used
- Identify citations
""")
with col3:
st.markdown("""
#### π‘ Learn Faster
- Ask follow-up questions
- Clarify concepts
- Compare approaches
""")
if __name__ == "__main__":
main() |