Spaces:
Runtime error
Runtime error
File size: 5,466 Bytes
af3d011 451448f af3d011 | 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 | """
app.py
Gradio UI for the RAG Document Q&A system.
"""
import os
import shutil
import tempfile
import logging
import gradio as gr
from rag_pipeline import RAGPipeline
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
pipeline = RAGPipeline()
# ββββββββββββββββββββββββββββββββββββββββββββββ
# Handlers
# ββββββββββββββββββββββββββββββββββββββββββββββ
def handle_upload(file):
if file is None:
return "β οΈ No file uploaded.", gr.update(interactive=False)
try:
ext = os.path.splitext(file.name)[1].lower()
tmp_path = tempfile.mktemp(suffix=ext)
shutil.copy(file.name, tmp_path)
stats = pipeline.ingest_document(tmp_path)
status = (
f"β
**Document ready!**\n\n"
f"- π File: `{stats['document']}`\n"
f"- π§© Chunks: `{stats['chunks']}`\n"
f"- π Embedding dim: `{stats['embedding_dim']}`\n"
f"- β‘ Ingestion time: `{stats['ingestion_time_s']}s`\n\n"
f"You can now ask questions below."
)
return status, gr.update(interactive=True)
except Exception as e:
logger.error(f"Upload error: {e}")
return f"β Error processing document: {str(e)}", gr.update(interactive=False)
def handle_query(question, history):
if not pipeline.is_ready:
history.append((question, "β οΈ Please upload a document first."))
return history, "", ""
if not question.strip():
return history, "", ""
try:
result = pipeline.query(question)
answer = result["answer"]
latency = result["latency_s"]
# β
FIXED: use rank instead of score
sources_md = "### π Retrieved Sources\n\n"
for src in result["sources"]:
rank = src["rank"]
excerpt = src["chunk"][:300] + ("..." if len(src["chunk"]) > 300 else "")
sources_md += f"**Source {rank}**\n\n> {excerpt}\n\n---\n\n"
history.append((question, answer))
return history, sources_md, f"β‘ Response time: {latency}s"
except Exception as e:
logger.error(f"Query error: {e}")
history.append((question, f"β Error: {str(e)}"))
return history, "", ""
def clear_all():
return [], "", ""
# ββββββββββββββββββββββββββββββββββββββββββββββ
# UI
# ββββββββββββββββββββββββββββββββββββββββββββββ
with gr.Blocks(
title="RAG Document Q&A",
theme=gr.themes.Soft(primary_hue="blue"),
css="""
.title { text-align: center; margin-bottom: 8px; }
.subtitle { text-align: center; color: #64748b; margin-bottom: 24px; }
footer { display: none !important; }
"""
) as demo:
gr.Markdown("# π RAG Document Q&A", elem_classes="title")
gr.Markdown(
"Upload a PDF or TXT document, then ask questions. "
"Answers are grounded in your document β not hallucinated.",
elem_classes="subtitle"
)
with gr.Row():
with gr.Column(scale=1):
gr.Markdown("### π Upload Document")
file_input = gr.File(
label="Upload PDF or TXT (max 10 MB)",
file_types=[".pdf", ".txt"],
)
upload_status = gr.Markdown("_No document loaded yet._")
with gr.Column(scale=2):
gr.Markdown("### π¬ Ask a Question")
chatbot = gr.Chatbot(height=380, label="Conversation")
with gr.Row():
question_box = gr.Textbox(
placeholder="e.g. What is the main topic of this document?",
label="Your question",
scale=4,
interactive=False,
)
submit_btn = gr.Button("Ask π", variant="primary", scale=1)
latency_display = gr.Markdown("")
clear_btn = gr.Button("ποΈ Clear conversation", variant="secondary")
with gr.Accordion("π View Retrieved Sources", open=False):
sources_display = gr.Markdown("_Ask a question to see retrieved sources._")
gr.Markdown("### π‘ Example Questions")
gr.Examples(
examples=[
["What is the main topic of this document?"],
["Summarize the key points."],
["What conclusions are drawn?"],
["What data or evidence is mentioned?"],
],
inputs=question_box,
)
# Events
file_input.change(
fn=handle_upload,
inputs=file_input,
outputs=[upload_status, question_box],
)
submit_btn.click(
fn=handle_query,
inputs=[question_box, chatbot],
outputs=[chatbot, sources_display, latency_display],
)
question_box.submit(
fn=handle_query,
inputs=[question_box, chatbot],
outputs=[chatbot, sources_display, latency_display],
)
clear_btn.click(
fn=clear_all,
outputs=[chatbot, sources_display, latency_display],
)
if __name__ == "__main__":
demo.launch(
server_name="0.0.0.0",
server_port=7860,
share=True,
) |