Spaces:
Sleeping
Sleeping
File size: 13,894 Bytes
d0abef8 9ff3220 d0abef8 554cd24 d0abef8 47d35e7 d0abef8 554cd24 d0abef8 554cd24 d0abef8 554cd24 d0abef8 47d35e7 d0abef8 554cd24 d0abef8 554cd24 d0abef8 554cd24 d0abef8 554cd24 d0abef8 554cd24 d0abef8 554cd24 5cd479f 554cd24 d0abef8 7d4a369 d0abef8 554cd24 78747ba 554cd24 d0abef8 5cd479f d0abef8 5cd479f d0abef8 554cd24 46bdcb4 d0abef8 554cd24 d0abef8 5cd479f 554cd24 d0abef8 554cd24 5cd479f 554cd24 d0abef8 554cd24 d0abef8 554cd24 5cd479f d0abef8 554cd24 ef1766e 554cd24 d0abef8 5cd479f d0abef8 554cd24 d0abef8 554cd24 d0abef8 554cd24 d0abef8 554cd24 d0abef8 554cd24 d0abef8 5cd479f 554cd24 d0abef8 554cd24 d0abef8 554cd24 47d35e7 554cd24 d0abef8 554cd24 5cd479f 554cd24 5cd479f d0abef8 554cd24 |
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 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 |
import streamlit as st
import requests
import json
import html
import sys
import os
import importlib
# ------------------------------------------
# Add project root + eval folder to path
# ------------------------------------------
CURRENT_DIR = os.path.dirname(__file__)
SRC_DIR = os.path.dirname(CURRENT_DIR)
PROJECT_ROOT = os.path.dirname(SRC_DIR)
sys.path.append(PROJECT_ROOT)
sys.path.append(os.path.join(PROJECT_ROOT, "eval"))
# ------------------------------------------
# FORCE RELOAD evaluate module
# ------------------------------------------
import eval.evaluate as eval_module
importlib.reload(eval_module)
from eval.evaluate import run_evaluation
API_GATEWAY_URL = "http://localhost:8000"
st.set_page_config(
page_title="Doc-Fetch",
layout="wide",
initial_sidebar_state="expanded", # Changed from "collapsed" to "expanded"
)
# =======================
# Disable Browser Autocomplete
# =======================
st.markdown("""
<style>
input[type=text] {
autocomplete: off !important;
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function() {
const inputs = window.parent.document.querySelectorAll('input[type="text"]');
inputs.forEach(inp => {
inp.setAttribute('autocomplete', 'off');
inp.setAttribute('autocorrect', 'off');
inp.setAttribute('autocapitalize', 'off');
inp.setAttribute('spellcheck', 'false');
});
});
</script>
""", unsafe_allow_html=True)
# =======================
# UI STYLING
# =======================
st.markdown("""
<style>
/* Global Font & Background */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
html, body, [class*="css"] {
font-family: 'Inter', sans-serif;
background-color: #ffffff; /* White Background */
color: #1f1f1f; /* Dark text for contrast */
}
/* --- INPUT FIELD FIX --- */
/* 1. Remove the default Streamlit border/background on the container */
.stTextInput > div[data-baseweb="input"] {
background-color: transparent !important;
border: none !important;
border-radius: 24px !important;
box-shadow: none !important;
}
/* 2. Style the actual input element */
.stTextInput input {
border-radius: 24px !important;
background-color: #f0f4f9 !important; /* Light ash input */
border: 1px solid transparent !important;
color: #1f1f1f !important;
padding: 12px 20px !important;
font-size: 16px !important;
transition: all 0.2s ease;
}
/* 3. Focus state - clean blue border, no default red overlay */
.stTextInput input:focus {
background-color: #ffffff !important;
border-color: #0b57d0 !important; /* Gemini Blue */
box-shadow: 0 0 0 2px rgba(11, 87, 208, 0.2) !important;
outline: none !important;
}
/* Button Styling */
.stButton > button {
border-radius: 20px;
font-weight: 500;
border: none;
padding: 0.5rem 1.5rem;
transition: all 0.3s ease;
white-space: nowrap; /* Forces text to stay on one line */
min-width: 140px; /* Ensures button is never too skinny */
}
/* Primary Search Button */
button[kind="primary"] {
background: linear-gradient(90deg, #4b90ff, #ff5546);
color: white;
}
button[kind="primary"]:hover {
opacity: 0.9;
box-shadow: 0 4px 12px rgba(75, 144, 255, 0.3);
}
/* Result Card - Light Ash Background */
.result-card {
background-color: #f0f4f9; /* Light Ash */
border-radius: 16px;
padding: 1.5rem;
margin-bottom: 1rem;
border: none; /* Removed border for cleaner look on light mode */
transition: transform 0.2s;
}
.result-card:hover {
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
/* Typography in Cards */
.card-title {
color: #1f1f1f; /* Dark Title */
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.5rem;
display: flex;
align-items: center;
gap: 8px;
}
.card-preview {
color: #444746; /* Darker gray for readable preview */
font-size: 0.95rem;
line-height: 1.5;
margin-bottom: 1rem;
}
/* Pills & Badges */
.score-badge {
background-color: #c4eed0; /* Light Green bg */
color: #0f5223; /* Dark Green text */
padding: 4px 12px;
border-radius: 12px;
font-size: 0.75rem;
font-weight: 500;
display: inline-block;
}
.keyword-pill {
background-color: #c2e7ff; /* Light Blue bg */
color: #004a77; /* Dark Blue text */
padding: 2px 10px;
border-radius: 8px;
font-size: 0.8rem;
margin-right: 6px;
display: inline-block;
margin-bottom: 4px;
}
/* Gradient Text for Header */
.gradient-text {
background: linear-gradient(to right, #4285f4, #9b72cb, #d96570);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 700;
font-size: 3rem;
}
/* Custom Info Box */
.stAlert {
background-color: #f0f4f9;
color: #1f1f1f;
}
</style>
""", unsafe_allow_html=True)
# =======================
# SIDEBAR (Settings)
# =======================
with st.sidebar:
st.markdown("### ⚙️ Settings")
top_k = st.slider("Top-K Results", 1, 10, 5)
url_input = st.text_input("API Endpoint", API_GATEWAY_URL)
st.divider()
st.subheader(" Evaluation")
run_eval = st.button("Run Evaluation Script")
st.divider()
st.caption("Semantic Search · Smart Cache · FAISS Retrieval · Multi-Service Architecture · Relevance by MiniLM Embeddings. Reasoning by LLM.")
API_GATEWAY_URL = url_input
# =======================
# MAIN HEADER
# =======================
col1, col2, col3 = st.columns([1, 6, 1])
with col2:
# Use HTML for the gradient text title
st.markdown('<div style="text-align: center; margin-bottom: 10px;"><span class="gradient-text">Hello, Explorer</span></div>', unsafe_allow_html=True)
st.markdown('<div style="text-align: center; color: #444746; font-size: 1.2rem; margin-bottom: 30px;">How can I help you find documents today?</div>', unsafe_allow_html=True)
# =======================
# SEARCH BAR CENTERED
# =======================
# Centering the search bar using columns
sc1, sc2, sc3 = st.columns([1, 4, 1])
with sc2:
query = st.text_input(
"Search Query", # Label hidden by CSS/Config if needed, or set visibility hidden
placeholder="Ask a question about your documents...",
label_visibility="collapsed"
)
# Buttons row
b1, b2, b3 = st.columns([2, 1, 2])
with b2:
submit_btn = st.button("Sparkle Search", type="primary", use_container_width=True)
# =======================
# SEARCH HANDLER
# =======================
if (submit_btn or query) and query.strip():
# Gemini-style spinner
with st.spinner(" Analyzing semantics..."):
response = requests.post(
f"{API_GATEWAY_URL}/search",
json={"query": query, "top_k": top_k}
)
if response.status_code != 200:
st.error(f"❌ Connection Error: {response.text}")
st.stop()
try:
data = response.json()
except:
st.error("❌ Invalid JSON response.")
st.stop()
if "results" not in data:
st.info("No relevant documents found for that query.")
st.stop()
# Results Header
st.markdown("### Search Results")
st.markdown("---")
# =======================
# DISPLAY RESULTS (Card Style)
# =======================
for item in data["results"]:
filename = item["filename"]
score = item["score"]
explanation = item["explanation"]
preview = item["preview"]
full_text = item["full_text"]
safe_preview = html.escape(preview)
# Prepare keyword HTML
keywords = explanation.get("keyword_overlap", [])
keyword_html = ""
if keywords:
keyword_html = "".join([f"<span class='keyword-pill'>{kw}</span>" for kw in keywords])
# Doc Icon (SVG) - Changed stroke to dark blue for visibility on light bg
doc_icon = """<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#0b57d0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z"></path><polyline points="14 2 14 8 20 8"></polyline></svg>"""
# Main Card Render
st.markdown(f"""
<div class="result-card">
<div style="display:flex; justify-content:space-between; align-items:start;">
<div class="card-title">
{doc_icon} {filename}
</div>
<div class="score-badge">match: {score:.4f}</div>
</div>
<p class="card-preview">{safe_preview}...</p>
<div style="margin-top: 10px;">
<div style="font-weight:600; color:#1f1f1f; margin-bottom:6px;">
Keyword Overlap:
</div>
{keyword_html}
</div>
</div>
""", unsafe_allow_html=True)
# Details Expander (Standard Streamlit but styled via global CSS)
with st.expander(f"View Document Insights: Semantic Overlap, Top Sentences, LLM Reasoning & Full Text for {filename}"):
overlap_ratio = explanation.get("overlap_ratio", 0)
sentences = explanation.get("top_sentences", [])
st.caption(f"Semantic Overlap Ratio: {overlap_ratio:.3f}")
if sentences:
st.markdown("**Key Excerpts:**")
for s in sentences:
# Updated quote box for light mode
st.markdown(f"""
<div style="background: #ffffff; border-left: 3px solid #4285f4; padding: 10px; margin-bottom: 5px; border-radius: 0 8px 8px 0; box-shadow: 0 1px 3px rgba(0,0,0,0.05);">
<span style="color: #1f1f1f;">"{s['sentence']}"</span>
<span style="color: #5e5e5e; font-size: 0.8em; margin-left: 10px;">(conf: {s['score']:.2f})</span>
</div>
""", unsafe_allow_html=True)
llm_expl = explanation.get("llm_explanation")
if llm_expl:
st.markdown("**Why this document?**")
st.write(llm_expl)
st.markdown("---")
st.markdown("**📄 Full Document Content:**")
st.code(full_text, language="text") # Using code block for better readability of raw text
if run_eval:
st.info("Running evaluation... this may take 10–20 seconds...")
results = run_evaluation(top_k=10)
st.success("Evaluation Complete!")
# -----------------------------
# Summary Metrics
# -----------------------------
st.markdown("## Evaluation Summary")
c1, c2, c3, c4 = st.columns(4)
with c1:
st.metric("Accuracy", f"{results['accuracy']}%")
with c2:
st.metric("MRR", results["mrr"])
with c3:
st.metric("NDCG", results["ndcg"])
with c4:
st.metric("Queries", results["total_queries"])
st.markdown(
f"**Correct:** {results['correct_count']} | "
f"**Incorrect:** {results['incorrect_count']}"
)
st.markdown("---")
# -----------------------------
# Incorrect Results
# -----------------------------
st.markdown("## Incorrect Fetches ")
wrong = [d for d in results["details"] if not d["is_correct"]]
if wrong:
for item in wrong:
st.markdown(f"""
<div style="
padding:14px;
background:#ffe5e5;
border-left:5px solid #ff4d4f;
border-radius:8px;
margin-bottom:10px;">
<b> Query:</b> {item['query']}<br>
<b>Expected:</b> {item['expected']}<br>
<b>Retrieved:</b> {item['retrieved']}<br>
<b>Rank:</b> {item['rank']}
</div>
""", unsafe_allow_html=True)
else:
st.success(" No incorrect queries!")
st.markdown("---")
# -----------------------------
# Correct Results
# -----------------------------
st.markdown("## Correct Fetches")
correct_items = [d for d in results["details"] if d["is_correct"]]
if correct_items:
for item in correct_items:
st.markdown(f"""
<div style="
padding:14px;
background:#e8ffe5;
border-left:5px solid #2ecc71;
border-radius:8px;
margin-bottom:10px;">
<b> Query:</b> {item['query']}<br>
<b>Expected:</b> {item['expected']}<br>
<b>Top-K Retrieved:</b> {item['retrieved']}<br>
<b>Rank:</b> {item['rank']}
</div>
""", unsafe_allow_html=True)
else:
st.info("No correct queries.")
st.markdown("---")
# -----------------------------
# Full Table
# -----------------------------
st.markdown("## Full Evaluation Table")
table_data = []
for item in results["details"]:
table_data.append({
"Query": item["query"],
"Expected Doc": item["expected"],
"Retrieved (Top-10)": ", ".join(item["retrieved"]),
"Correct?": "Yes" if item["is_correct"] else "No",
"Rank": item["rank"]
})
st.dataframe(table_data, use_container_width=True)
|