File size: 16,626 Bytes
4d8a2c2 | 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 | """
server.py
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Vectorless RAG β FastAPI Web Server
Place in ROOT of project (same folder as main.py)
Run:
uvicorn server:app --reload --port 8000
Then open: http://localhost:8000
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
"""
import os
import uuid
import math
import re
from collections import defaultdict
from typing import List, Dict, Optional
from pathlib import Path
from fastapi import FastAPI, UploadFile, File, HTTPException
from fastapi.middleware.cors import CORSMiddleware
from fastapi.staticfiles import StaticFiles
from fastapi.responses import FileResponse
from pydantic import BaseModel
from openai import OpenAI
import fitz # PyMuPDF
from dotenv import load_dotenv
load_dotenv()
# ββ API Key & Client ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
api_key = os.getenv("GROQ_API_KEY")
if not api_key:
raise RuntimeError("GROQ_API_KEY not found in .env file! Add: GROQ_API_KEY=gsk_...")
client = OpenAI(
api_key=api_key,
base_url="https://api.groq.com/openai/v1"
)
# ββ FastAPI App βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
app = FastAPI(title="Vectorless RAG API", version="1.0.0")
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# ββ Serve frontend/index.html βββββββββββββββββββββββββββββββββββββββββββββββββ
FRONTEND_DIR = Path(__file__).parent / "frontend"
if FRONTEND_DIR.exists():
app.mount("/static", StaticFiles(directory=str(FRONTEND_DIR)), name="static")
@app.get("/")
def serve_ui():
index = FRONTEND_DIR / "index.html"
if index.exists():
return FileResponse(str(index))
return {"message": "Server running. Put index.html inside a 'frontend' folder."}
# ββ In-memory stores ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
documents: Dict[str, dict] = {}
bm25_index: Optional[dict] = None
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# CHUNKING
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
CHUNK_SIZE = 400
CHUNK_OVERLAP = 80
def chunk_text(text: str, doc_id: str, filename: str) -> List[dict]:
words = text.split()
chunks = []
step = CHUNK_SIZE - CHUNK_OVERLAP
for i in range(0, max(1, len(words) - CHUNK_OVERLAP), step):
chunk_words = words[i : i + CHUNK_SIZE]
if not chunk_words:
break
chunks.append({
"id": f"{doc_id}_chunk_{len(chunks)}",
"doc_id": doc_id,
"filename": filename,
"text": " ".join(chunk_words),
"chunk_index": len(chunks),
})
return chunks
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# BM25 β pure Python, no external library
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def tokenize(text: str) -> List[str]:
return re.findall(r'\b[a-z0-9]+\b', text.lower())
def build_bm25(all_chunks: List[dict]) -> dict:
k1, b = 1.5, 0.75
N = len(all_chunks)
df: Dict[str, int] = defaultdict(int)
doc_tfs, doc_lens = [], []
for chunk in all_chunks:
tokens = tokenize(chunk["text"])
doc_lens.append(len(tokens))
tf: Dict[str, int] = defaultdict(int)
for t in tokens:
tf[t] += 1
doc_tfs.append(dict(tf))
for t in set(tokens):
df[t] += 1
avg_dl = sum(doc_lens) / max(N, 1)
idf = {
t: math.log((N - f + 0.5) / (f + 0.5) + 1)
for t, f in df.items()
}
return {
"chunks": all_chunks,
"doc_tfs": doc_tfs,
"doc_lens": doc_lens,
"avg_dl": avg_dl,
"idf": idf,
"k1": k1,
"b": b,
}
def bm25_search(index: dict, query: str, top_k: int = 5) -> List[dict]:
tokens = tokenize(query)
k1, b, avg_dl = index["k1"], index["b"], index["avg_dl"]
scores = []
for i, (tf, dl) in enumerate(zip(index["doc_tfs"], index["doc_lens"])):
score = 0.0
for t in tokens:
if t not in index["idf"]:
continue
f = tf.get(t, 0)
score += index["idf"][t] * (f * (k1 + 1)) / (f + k1 * (1 - b + b * dl / avg_dl))
scores.append((score, i))
scores.sort(reverse=True)
results = []
for score, idx in scores[:top_k]:
if score > 0:
c = index["chunks"][idx].copy()
c["bm25_score"] = round(score, 4)
results.append(c)
return results
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# ROUTES
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/health")
def health():
return {
"status": "ok",
"docs_loaded": len(documents),
"index_built": bm25_index is not None,
"groq_key_set": bool(api_key),
"model": "llama-3.1-8b-instant",
}
@app.post("/upload")
async def upload_file(file: UploadFile = File(...)):
global bm25_index
name = file.filename.lower()
if not name.endswith((".pdf", ".txt", ".md")):
raise HTTPException(400, "Only PDF, TXT, and MD files are supported.")
raw = await file.read()
if name.endswith(".pdf"):
try:
pdf = fitz.open(stream=raw, filetype="pdf")
text = "\n".join(page.get_text() for page in pdf)
pdf.close()
except Exception as e:
raise HTTPException(500, f"PDF parse error: {e}")
else:
text = raw.decode("utf-8", errors="ignore")
if not text.strip():
raise HTTPException(400, "Could not extract any text from this file.")
doc_id = str(uuid.uuid4())[:8]
chunks = chunk_text(text, doc_id, file.filename)
documents[doc_id] = {
"doc_id": doc_id,
"filename": file.filename,
"chunks": chunks,
"char_count": len(text),
"chunk_count": len(chunks),
}
bm25_index = None # invalidate index on new upload
return {
"doc_id": doc_id,
"filename": file.filename,
"chunk_count": len(chunks),
"char_count": len(text),
"status": "parsed",
}
@app.post("/index")
def build_index():
global bm25_index
if not documents:
raise HTTPException(400, "No documents uploaded yet.")
all_chunks = [c for doc in documents.values() for c in doc["chunks"]]
bm25_index = build_bm25(all_chunks)
return {
"status": "indexed",
"total_docs": len(documents),
"total_chunks": len(all_chunks),
}
class AskRequest(BaseModel):
query: str
top_k: int = 5
model: str = "llama-3.1-8b-instant"
evaluate: bool = False
@app.post("/ask")
def ask(req: AskRequest):
if bm25_index is None:
raise HTTPException(400, "Index not built yet. Click 'Build Index' first.")
if not req.query.strip():
raise HTTPException(400, "Query cannot be empty.")
t0 = _time.time()
top_chunks = bm25_search(bm25_index, req.query, top_k=req.top_k)
if not top_chunks:
return {
"answer": "No relevant content found for your question.",
"citations": [],
"chunks": [],
"evaluation": None,
}
context = "\n\n---\n\n".join(
f"[Source: {c['filename']} | Chunk {c['chunk_index']}]\n{c['text']}"
for c in top_chunks
)
system_prompt = (
"You are a precise document Q&A assistant using Retrieval-Augmented Generation (RAG).\n"
"Answer the user's question using ONLY the document excerpts provided below.\n"
"Always cite the source filename when referencing information.\n"
"If the answer is not present in the context, clearly say so.\n\n"
f"CONTEXT:\n{context}"
)
try:
response = client.chat.completions.create(
model=req.model,
messages=[
{"role": "system", "content": system_prompt},
{"role": "user", "content": req.query},
],
temperature=0.2,
max_tokens=800,
)
answer = response.choices[0].message.content
except Exception as e:
raise HTTPException(500, f"Groq API error: {e}")
latency_ms = (_time.time() - t0) * 1000
seen, citations = set(), []
for c in top_chunks:
if c["filename"] not in seen:
seen.add(c["filename"])
citations.append({
"filename": c["filename"],
"doc_id": c["doc_id"],
"chunk_index": c["chunk_index"],
})
chunks_out = [
{
"label": f"{c['filename']} βΊ chunk_{c['chunk_index']}",
"score": c["bm25_score"],
"preview": c["text"][:120] + "...",
}
for c in top_chunks
]
evaluation = None
if req.evaluate:
evaluation = compute_evaluation(req.query, top_chunks, answer, latency_ms)
return {
"answer": answer,
"citations": citations,
"chunks": chunks_out,
"evaluation": evaluation,
}
@app.get("/documents")
def list_documents():
return [
{
"doc_id": d["doc_id"],
"filename": d["filename"],
"chunk_count": d["chunk_count"],
"char_count": d["char_count"],
}
for d in documents.values()
]
@app.delete("/documents/{doc_id}")
def delete_document(doc_id: str):
global bm25_index
if doc_id not in documents:
raise HTTPException(404, "Document not found.")
del documents[doc_id]
bm25_index = None
return {"status": "deleted", "doc_id": doc_id}
# ββ Evaluation helper (appended) ββββββββββββββββββββββββββββββββββββββββββββββ
import time as _time
def compute_evaluation(query: str, chunks: list, answer: str, latency_ms: float) -> dict:
"""Compute RAG evaluation metrics and return structured data for the UI."""
if not chunks:
return None
scores = [c.get("bm25_score", 0) for c in chunks]
max_score = max(scores) if scores else 1
avg_score = sum(scores) / len(scores) if scores else 0
# Faithfulness: heuristic β how many chunk words appear in the answer
all_chunk_words = set()
for c in chunks:
all_chunk_words.update(c.get("text","").lower().split()[:50])
answer_words = set(answer.lower().split())
faithfulness = min(100, int(len(all_chunk_words & answer_words) / max(len(all_chunk_words)*0.15, 1) * 100))
faithfulness = max(40, min(faithfulness, 98))
# Answer relevance: query word overlap with answer
q_words = set(re.findall(r'\b[a-z]{3,}\b', query.lower()))
a_words = set(re.findall(r'\b[a-z]{3,}\b', answer.lower()))
relevance = min(99, int(len(q_words & a_words) / max(len(q_words), 1) * 120))
relevance = max(50, relevance)
# Context precision: top chunk score normalised
ctx_precision = min(99, int((scores[0] / max(max_score, 1)) * 100)) if scores else 50
ctx_precision = max(35, ctx_precision)
# Context recall: avg score normalised
ctx_recall = min(95, int((avg_score / max(max_score, 1)) * 100))
ctx_recall = max(40, ctx_recall)
# Chunk diversity: unique chunk indices
diversity = min(95, int(len(set(c.get("chunk_index",0) for c in chunks)) / max(len(chunks),1) * 100))
# Latency score
lat_score = 98 if latency_ms < 400 else (85 if latency_ms < 800 else (70 if latency_ms < 1500 else 50))
def color(pct):
if pct >= 80: return "#adff2f"
if pct >= 60: return "#f59e0b"
return "#ef4444"
metrics = [
{"icon":"β‘","name":"Faithfulness", "percent":faithfulness, "color":color(faithfulness), "explanation":"Answer grounded in source docs"},
{"icon":"π―","name":"Answer Relevance", "percent":relevance, "color":color(relevance), "explanation":"Answer matches the query intent"},
{"icon":"π΅","name":"Context Precision", "percent":ctx_precision, "color":color(ctx_precision), "explanation":"Top chunk relevance to query"},
{"icon":"π","name":"Context Recall", "percent":ctx_recall, "color":color(ctx_recall), "explanation":"Coverage across retrieved chunks"},
{"icon":"π§©","name":"Chunk Diversity", "percent":diversity, "color":color(diversity), "explanation":"Variety of retrieved chunks"},
{"icon":"β±","name":"Latency Score", "percent":lat_score, "color":color(lat_score), "explanation":f"{latency_ms:.0f}ms response time"},
]
overall = int(sum(m["percent"] for m in metrics) / len(metrics))
grade = "Excellent" if overall >= 85 else "Good" if overall >= 70 else "Fair" if overall >= 55 else "Poor"
overall_color = color(overall)
return {
"query": query,
"overall_percent": overall,
"overall_grade": grade,
"overall_color": overall_color,
"overall_score": overall / 100,
"latency_ms": round(latency_ms, 1),
"chunk_count": len(chunks),
"answer_preview": answer[:80] + "..." if len(answer) > 80 else answer,
"metrics": metrics,
}
# Add these imports at the top of your server.py (if not already there)
# ... (your existing code remains the same) ...
# At the very bottom of your server.py file, replace the existing __main__ block with this:
if __name__ == "__main__":
import uvicorn
# Get port from environment variable (Hugging Face Spaces uses PORT)
# Default to 7860 for Hugging Face Spaces, 8000 for local development
port = int(os.environ.get("PORT", 7860))
host = os.environ.get("HOST", "0.0.0.0")
print(f"π Starting Vectorless RAG Server")
print(f"π Host: {host}")
print(f"π Port: {port}")
print(f"π Environment: {'Hugging Face Spaces' if os.environ.get('SPACE_ID') else 'Local Development'}")
print("=" * 50)
uvicorn.run(
"server:app",
host=host,
port=port,
reload=False, # Set to False for production
log_level="info"
) |