Spaces:
Sleeping
Sleeping
File size: 9,684 Bytes
ffa03b9 412236b ffa03b9 5f6e0e4 ffa03b9 5f6e0e4 ffa03b9 412236b 5f6e0e4 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 5f6e0e4 ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 412236b ffa03b9 e7dfc31 5f6e0e4 ffa03b9 412236b | 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 | """
Enhanced FastAPI application with dual vector store support
Endpoints for ingestion and querying with fallback logic
"""
from fastapi import FastAPI, HTTPException, Request
from fastapi.middleware.cors import CORSMiddleware
from fastapi.staticfiles import StaticFiles
from fastapi.responses import FileResponse
from contextlib import asynccontextmanager
from typing import List, Dict, Any
from pathlib import Path
import os
from pydantic import BaseModel, Field
from src.core.dual_rag_pipeline import get_dual_rag_pipeline
from src.utils.logger import get_logger
logger = get_logger(__name__)
# Request/Response Models
class IngestRequest(BaseModel):
"""Request to trigger vector store ingestion"""
rebuild: bool = Field(
default=False,
description="If True, rebuild stores from scratch. If False, load existing."
)
class IngestResponse(BaseModel):
"""Response from ingestion endpoint"""
status: str
faq_count: int
ticket_count: int
message: str
class QueryRequest(BaseModel):
"""Request for querying the RAG system"""
question: str = Field(..., description="User's question")
top_k: int = Field(default=3, ge=1, le=10, description="Number of results to retrieve")
class Citation(BaseModel):
"""Citation/source information"""
rank: int
content: str
similarity: float
source: str
category: str
resolution_status: str | None = None
class QueryResponse(BaseModel):
"""Response from query endpoint"""
answer: str
source: str
confidence: float
citations: List[Citation]
latency_ms: float
query: str
timestamp: str
# Lifespan context manager
@asynccontextmanager
async def lifespan(app: FastAPI):
"""Startup and shutdown events"""
logger.info("Starting Enhanced SupportRAG API with Dual Vector Stores...")
# Initialize pipeline
pipeline = get_dual_rag_pipeline()
# Try to load existing stores
try:
pipeline.load_vector_stores()
logger.info("Loaded existing vector stores")
except Exception as e:
logger.warning(f"Could not load existing stores: {e}")
logger.info("Run POST /ingest to build vector stores")
logger.info("API ready to serve requests")
yield
# Shutdown
logger.info("Shutting down Enhanced SupportRAG API...")
# Create FastAPI app
app = FastAPI(
title="SupportRAG Enhanced API",
description="Dual vector store RAG system with FAQ and Ticket fallback",
version="2.0.0",
lifespan=lifespan
)
# Add CORS middleware
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Root endpoint removed in favor of static file serving logic at end of file
@app.get("/health")
async def health_check():
"""Health check endpoint"""
pipeline = get_dual_rag_pipeline()
return {
"status": "healthy",
"faq_store_loaded": pipeline.faq_store is not None,
"ticket_store_loaded": pipeline.ticket_store is not None,
"faq_threshold": pipeline.faq_threshold
}
@app.post("/ingest", response_model=IngestResponse)
async def ingest_data(request: IngestRequest):
"""
Ingest data and build vector stores
- Loads support_faqs.csv
- Loads HuggingFace dataset MakTek/Customer_support_faqs_dataset
- Loads support_tickets.csv
- Builds FAQ and Ticket FAISS vector stores
- Saves stores to disk
"""
try:
pipeline = get_dual_rag_pipeline()
if request.rebuild:
logger.info("Rebuilding vector stores from scratch...")
pipeline.build_vector_stores()
pipeline.save_vector_stores()
else:
logger.info("Loading existing vector stores...")
try:
pipeline.load_vector_stores()
except Exception as e:
logger.warning(f"Could not load existing stores: {e}. Building new ones...")
pipeline.build_vector_stores()
pipeline.save_vector_stores()
# Count documents (approximate)
faq_count = len(pipeline.load_support_faqs()) + len(pipeline.load_huggingface_faqs())
ticket_count = len(pipeline.load_support_tickets())
return IngestResponse(
status="success",
faq_count=faq_count,
ticket_count=ticket_count,
message=f"Vector stores built successfully. FAQ: {faq_count}, Tickets: {ticket_count}"
)
except Exception as e:
logger.error(f"Error during ingestion: {e}")
raise HTTPException(status_code=500, detail=str(e))
@app.post("/query", response_model=QueryResponse)
async def query_rag(request: QueryRequest):
"""
Query the RAG system with dual vector store fallback (ASYNC)
Logic:
1. Search FAQ and Ticket stores in parallel
2. Use FAQ if similarity >= 0.65, else fallback to Ticket
3. Generate answer with async LLM call
4. Return answer + metadata (source, citations, status)
Performance optimizations:
- Parallel vector store searches
- Async LLM generation
- Non-blocking I/O operations
"""
try:
pipeline = get_dual_rag_pipeline()
if not pipeline.faq_store and not pipeline.ticket_store:
raise HTTPException(
status_code=503,
detail="Vector stores not initialized. Run POST /ingest first."
)
# Execute async query with parallel retrieval
result = await pipeline.aquery(
question=request.question,
top_k=request.top_k
)
# Convert to response model
citations = [
Citation(**citation) for citation in result["citations"]
]
return QueryResponse(
answer=result["answer"],
source=result["source"],
confidence=result["confidence"],
citations=citations,
latency_ms=result["latency_ms"],
query=result["query"],
timestamp=result["timestamp"]
)
except HTTPException:
raise
except Exception as e:
logger.error(f"Error processing query: {e}")
raise HTTPException(status_code=500, detail=str(e))
@app.get("/stats")
async def get_stats():
"""Get system statistics"""
import json
from pathlib import Path
log_file = Path("logs/query_logs.jsonl")
if not log_file.exists():
return {
"total_queries": 0,
"avg_latency_ms": 0,
"avg_confidence": 0,
"source_breakdown": {}
}
# Read logs
queries = []
with open(log_file, "r", encoding="utf-8") as f:
for line in f:
queries.append(json.loads(line))
if not queries:
return {
"total_queries": 0,
"avg_latency_ms": 0,
"avg_confidence": 0,
"source_breakdown": {}
}
# Calculate stats
total = len(queries)
avg_latency = sum(q["latency_ms"] for q in queries) / total
avg_confidence = sum(q["confidence"] for q in queries) / total
# Source breakdown
sources = {}
for q in queries:
source = q["source"]
sources[source] = sources.get(source, 0) + 1
return {
"total_queries": total,
"avg_latency_ms": round(avg_latency, 2),
"avg_confidence": round(avg_confidence, 4),
"source_breakdown": sources
}
@app.get("/stores")
async def get_stores():
"""Real vector store info: doc counts directly from FAISS index.ntotal"""
pipeline = get_dual_rag_pipeline()
faq_count = 0
ticket_count = 0
faq_loaded = pipeline.faq_store is not None
ticket_loaded = pipeline.ticket_store is not None
try:
if faq_loaded:
faq_count = int(pipeline.faq_store.index.ntotal)
except Exception:
pass
try:
if ticket_loaded:
ticket_count = int(pipeline.ticket_store.index.ntotal)
except Exception:
pass
return {
"faq_store": {
"loaded": faq_loaded,
"doc_count": faq_count,
},
"ticket_store": {
"loaded": ticket_loaded,
"doc_count": ticket_count,
},
"total_docs": faq_count + ticket_count,
}
# --- Frontend Static Files Serving ---
BASE_DIR = Path(__file__).resolve().parent
STATIC_DIR = BASE_DIR / "static"
if STATIC_DIR.exists():
# Mount assets folder for static resources (CSS, JS, Images)
app.mount("/assets", StaticFiles(directory=STATIC_DIR / "assets"), name="assets")
@app.get("/{full_path:path}")
async def serve_spa(full_path: str):
# Allow API routes to pass through (though FastAPI routing handles this naturally if defined above)
if full_path.startswith("api"):
raise HTTPException(status_code=404, detail="API route not found")
# Serve specific file if it exists
file_path = STATIC_DIR / full_path
if file_path.is_file():
return FileResponse(file_path)
# Default to index.html for SPA routing (e.g. /dashboard, /chat)
return FileResponse(STATIC_DIR / "index.html")
else:
@app.get("/")
async def root():
return {
"message": "SupportRAG Enhanced API",
"status": "running",
"frontend": "not_served (static directory missing)"
}
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)
|