File size: 18,276 Bytes
3fbebe2 e7ec69a 3fbebe2 1403448 | 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 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 | """
Intelligent Ticket Auto-Routing System β Hugging Face Spaces App
================================================================
Converts support tickets into structured routing decisions:
β’ Multi-label tag classification
β’ Department routing (hybrid: tag-voting + semantic similarity)
β’ Priority prediction
β’ Duplicate detection via FAISS
"""
import csv
import os
import time
import uuid
from datetime import datetime
from pathlib import Path
import faiss
import gradio as gr
import joblib
import numpy as np
import pandas as pd
from sentence_transformers import SentenceTransformer
from sklearn.metrics.pairwise import cosine_similarity
# ββ Paths ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
APP_DIR = Path(__file__).resolve().parent
MODEL_DIR = APP_DIR / "Models"
DATA_DIR = APP_DIR / "Datasets"
import tempfile
LOG_PATH = os.path.join(tempfile.gettempdir(), "routing_evaluation_log.csv")
# ββ Load Models ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
print("Loading SBERT model...")
sbert = SentenceTransformer(
"sentence-transformers/all-mpnet-base-v2",
cache_folder="/data"
)
print("Loading classifiers...")
tag_model = joblib.load(MODEL_DIR / "sbert_classifier.pkl")
tag_calibrators = joblib.load(MODEL_DIR / "tag_calibrators.pkl")
priority_bundle = joblib.load(MODEL_DIR / "tuned_priority_model.pkl")
priority_model = (
priority_bundle["model"]
if isinstance(priority_bundle, dict) and "model" in priority_bundle
else priority_bundle
)
priority_encoder = joblib.load(MODEL_DIR / "priority_encoder.pkl")
hf_scaler = joblib.load(MODEL_DIR / "hf_scaler.pkl")
tag_binarizer = joblib.load(MODEL_DIR / "mlb_tag_binarizer.pkl")
tag_list = list(tag_binarizer.classes_)
dept_prototypes = joblib.load(MODEL_DIR / "department_prototypes.pkl")
print(f"[OK] Tags: {len(tag_list)}, Departments: {len(dept_prototypes)}")
# ββ Load Dataset & Build FAISS Index βββββββββββββββββββββββββββββββββββββββββ
print("Loading dataset and embeddings...")
df = pd.read_csv(DATA_DIR / "Domain-A_Dataset_Clean.csv")
embeddings = np.load(MODEL_DIR / "db_embeddings.npy").astype("float32")
index = faiss.IndexFlatIP(embeddings.shape[1])
faiss.normalize_L2(embeddings)
index.add(embeddings)
print(f"[OK] FAISS index: {index.ntotal} vectors")
# ββ Duplicate Detection ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
DUP_THRESHOLD = 0.7623
submitted_texts = list(df["text"].astype(str).tolist())
def check_duplicate(query_emb):
"""Check if query is a duplicate of any ticket in the index."""
q = query_emb.astype("float32").reshape(1, -1).copy()
faiss.normalize_L2(q)
D, I = index.search(q, 20)
best_idx = int(I[0][0])
best_score = float(D[0][0])
if best_score >= DUP_THRESHOLD:
matched = (
submitted_texts[best_idx]
if best_idx < len(submitted_texts)
else "(unknown)"
)
return True, matched, best_score
return False, None, best_score
def register_ticket(query_emb, text):
"""Add a new ticket to the FAISS index."""
v = query_emb.astype("float32").reshape(1, -1).copy()
faiss.normalize_L2(v)
index.add(v)
submitted_texts.append(text)
# ββ Tag Prediction βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def predict_tags(text, emb):
raw_probs = np.asarray(tag_model.predict_proba([emb])[0], dtype=float)
calibrated = np.array(raw_probs, dtype=float)
for i, cal in enumerate(tag_calibrators):
if cal is None:
continue
calibrated[i] = float(
cal.predict(np.asarray([raw_probs[i]], dtype=float))[0]
)
top_idx = calibrated.argsort()[-5:][::-1]
return top_idx, calibrated[top_idx], calibrated
# ββ Priority Prediction βββββββββββββββββββββββββββββββββββββββββββββββββββββ
def extract_features(text):
words = text.split()
return [
len(text),
len(words),
len(set(words)) / (len(words) + 1),
np.mean([len(w) for w in words]) if words else 0,
sum(w in text.lower() for w in ["urgent", "critical", "down"]),
sum(w in text.lower() for w in ["not", "cannot", "no"]),
]
def predict_priority(text, emb):
features = extract_features(text)
features_scaled = hf_scaler.transform([features])
x = np.hstack([emb.reshape(1, -1), features_scaled])
pred_idx = int(priority_model.predict(x)[0])
return str(priority_encoder.classes_[pred_idx])
# ββ Routing Engine βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def route_ticket(emb, text):
tag_idx, top_probs, all_probs = predict_tags(text, emb)
vote_score = np.mean(top_probs)
best_dept, best_sim = None, -1
for dept, proto in dept_prototypes.items():
sim = cosine_similarity([emb], [proto])[0][0]
if sim > best_sim:
best_sim = sim
best_dept = dept
hybrid = 0.7 * vote_score + 0.3 * best_sim
threshold = np.clip(
np.mean(all_probs) + np.std(all_probs), 0.45, 0.70
)
if hybrid >= threshold:
mode, review = "AUTO_ROUTE", False
elif vote_score >= 0.40 and hybrid >= 0.40:
mode, review = "AUTO_ROUTE_VOTE", False
elif best_sim >= 0.65:
mode, review = "AUTO_ROUTE_SEMANTIC", False
elif hybrid >= 0.30:
mode, review = "AUTO_ROUTE_LOW_CONF", True
else:
mode, review = "HUMAN_REVIEW", True
priority = predict_priority(text, emb)
return mode, best_dept, priority, hybrid, review
# ββ Logging ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
LOG_COLUMNS = [
"ticket_id", "timestamp", "ticket_text", "duplicate_flag",
"duplicate_score", "routing_mode", "department",
"department_confidence", "priority", "priority_confidence",
"selected_tags", "routing_score", "prediction_latency_ms", "explanation",
]
def _ensure_log_header():
if not os.path.exists(LOG_PATH):
with open(LOG_PATH, "w", newline="", encoding="utf-8") as f:
csv.writer(f).writerow(LOG_COLUMNS)
def _append_log(row_dict):
_ensure_log_header()
with open(LOG_PATH, "a", newline="", encoding="utf-8") as f:
csv.writer(f).writerow([row_dict.get(c, "") for c in LOG_COLUMNS])
# ββ Main Processing Pipeline ββββββββββββββββββββββββββββββββββββββββββββββββ
def process_ticket(text):
t0 = time.time()
ticket_id = str(uuid.uuid4())[:8]
timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
emb = sbert.encode(text)
# Duplicate detection
is_dup, dup_text, dup_score = check_duplicate(emb)
# Routing
mode, dept, priority, conf, review = route_ticket(emb, text)
latency_ms = round((time.time() - t0) * 1000, 2)
# Tags for logging
tag_idx, top_probs, _ = predict_tags(text, emb)
tag_summary = ", ".join(
f"{tag_list[idx]} ({top_probs[j]:.2f})"
for j, idx in enumerate(tag_idx[:3])
)
if is_dup:
routing_mode = "DUPLICATE_CHAIN"
explanation = (
f"Duplicate detected (score={dup_score:.4f}). "
f"Original: {str(dup_text)[:100]}"
)
result = {
"ticket_id": ticket_id,
"status": "β οΈ DUPLICATE",
"route": "DUPLICATE_CHAIN",
"department": dept,
"priority": priority,
"confidence": round(float(dup_score), 3),
"review": False,
"tags": tag_summary,
"message": f"Duplicate of: {str(dup_text)[:200]}",
"latency": latency_ms,
}
else:
routing_mode = mode
explanation = (
f"Ticket routed to {dept} because predicted tags "
f"[{tag_summary}] map to the {dept} department. "
f"Routing mode: {mode}, Score: {conf:.3f}"
)
result = {
"ticket_id": ticket_id,
"status": "β
NOT DUPLICATE",
"route": mode,
"department": dept,
"priority": priority,
"confidence": round(float(conf), 3),
"review": review,
"tags": tag_summary,
"message": "Ticket processed successfully",
"latency": latency_ms,
}
# Register & log
register_ticket(emb, text)
_append_log({
"ticket_id": ticket_id,
"timestamp": timestamp,
"ticket_text": text,
"duplicate_flag": is_dup,
"duplicate_score": round(float(dup_score), 4),
"routing_mode": routing_mode,
"department": dept,
"department_confidence": round(float(conf), 4),
"priority": priority,
"priority_confidence": "",
"selected_tags": tag_summary,
"routing_score": round(float(conf), 4),
"prediction_latency_ms": latency_ms,
"explanation": explanation,
})
return result
# ββ Gradio UI Handler ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def ui_process(text):
if not text or not text.strip():
return (
"β οΈ Please enter ticket text",
"", "", "", "", "", "", "", ""
)
r = process_ticket(text.strip())
# Confidence bar (visual)
conf_pct = int(r["confidence"] * 100)
# Review badge
review_badge = "π΄ Yes β Manual review recommended" if r["review"] else "π’ No"
# Priority with emoji
priority_map = {
"critical": "π΄ Critical",
"high": "π High",
"medium": "π‘ Medium",
"low": "π’ Low",
}
priority_display = priority_map.get(
r["priority"].lower(), r["priority"]
)
# Route mode with emoji
route_map = {
"AUTO_ROUTE": "β‘ Auto-Routed",
"AUTO_ROUTE_VOTE": "β‘ Auto-Routed (Tag Vote)",
"AUTO_ROUTE_SEMANTIC": "β‘ Auto-Routed (Semantic)",
"AUTO_ROUTE_LOW_CONF": "β οΈ Auto-Routed (Low Confidence)",
"HUMAN_REVIEW": "π§βπΌ Human Review Required",
"DUPLICATE_CHAIN": "π Duplicate Chain",
}
route_display = route_map.get(r["route"], r["route"])
# Department display
dept_display = r["department"].replace("_", " ")
return (
r["status"],
f"π« {r['ticket_id']}",
route_display,
f"π’ {dept_display}",
priority_display,
f"{conf_pct}%",
r["tags"],
review_badge,
r["message"],
)
# ββ Custom CSS βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
CSS = """
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
* { font-family: 'Inter', sans-serif !important; }
.gradio-container {
max-width: 960px !important;
margin: 0 auto !important;
}
/* Header */
.app-header {
text-align: center;
padding: 1.5rem 1rem;
background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
border-radius: 16px;
margin-bottom: 1.5rem;
box-shadow: 0 8px 32px rgba(79, 70, 229, 0.3);
}
.app-header h1 {
color: white !important;
font-size: 1.75rem !important;
font-weight: 700 !important;
margin: 0 !important;
letter-spacing: -0.02em;
}
.app-header p {
color: rgba(255,255,255,0.85) !important;
font-size: 0.95rem !important;
margin: 0.4rem 0 0 0 !important;
}
/* Cards */
.result-card {
background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
border: 1px solid rgba(255,255,255,0.1);
border-radius: 12px;
padding: 0.25rem;
}
/* Status indicators */
.status-box textarea, .status-box input {
font-weight: 600 !important;
font-size: 1rem !important;
}
/* Submit button */
.submit-btn {
background: linear-gradient(135deg, #4f46e5, #7c3aed) !important;
border: none !important;
color: white !important;
font-weight: 600 !important;
font-size: 1rem !important;
padding: 0.75rem 2rem !important;
border-radius: 10px !important;
box-shadow: 0 4px 16px rgba(79, 70, 229, 0.4) !important;
transition: all 0.3s ease !important;
}
.submit-btn:hover {
transform: translateY(-2px) !important;
box-shadow: 0 6px 24px rgba(79, 70, 229, 0.5) !important;
}
/* Clear button */
.clear-btn {
border: 1px solid rgba(255,255,255,0.2) !important;
border-radius: 10px !important;
font-weight: 500 !important;
}
/* Stats footer */
.stats-row {
text-align: center;
padding: 0.75rem;
background: rgba(79, 70, 229, 0.08);
border-radius: 10px;
margin-top: 0.5rem;
font-size: 0.85rem;
color: #a5b4fc;
}
footer { display: none !important; }
"""
# ββ Example Tickets ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
EXAMPLES = [
["My laptop screen is flickering and sometimes goes completely black. I've tried restarting but the issue persists after login."],
["I cannot access the company VPN from my home network. It keeps showing authentication failed error even though my password is correct."],
["We need to upgrade our database server as the current one is running out of storage space and response times have increased significantly."],
["I was charged twice for my last month's subscription. Please process a refund for the duplicate charge."],
["The email server has been down since this morning. No one in the office can send or receive emails. This is critical!"],
["Can you provide training materials for the new CRM software that was deployed last week?"],
]
# ββ Build UI βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
with gr.Blocks(css=CSS, theme=gr.themes.Soft(primary_hue="indigo", neutral_hue="slate"), title="Ticket Auto-Routing System") as app:
# Header
gr.HTML("""
<div class="app-header">
<h1>π« Intelligent Ticket Auto-Routing System</h1>
<p>AI-powered ticket classification, routing, priority prediction & duplicate detection</p>
</div>
""")
with gr.Row():
# ββ Left: Input ββ
with gr.Column(scale=1):
ticket_input = gr.Textbox(
label="π Ticket Description",
placeholder="Describe the support issue in detail...",
lines=6,
max_lines=12,
)
with gr.Row():
submit_btn = gr.Button("π Process Ticket", variant="primary", elem_classes=["submit-btn"])
clear_btn = gr.ClearButton(value="ποΈ Clear", elem_classes=["clear-btn"])
gr.Examples(
examples=EXAMPLES,
inputs=ticket_input,
label="π‘ Try these examples",
)
# ββ Right: Results ββ
with gr.Column(scale=1):
with gr.Group(elem_classes=["result-card"]):
dup_status = gr.Textbox(label="π Duplicate Status", interactive=False, elem_classes=["status-box"])
ticket_id = gr.Textbox(label="π Ticket ID", interactive=False)
with gr.Group(elem_classes=["result-card"]):
with gr.Row():
route_mode = gr.Textbox(label="π€οΈ Routing Mode", interactive=False)
department = gr.Textbox(label="π’ Department", interactive=False)
with gr.Row():
priority = gr.Textbox(label="β‘ Priority", interactive=False)
confidence = gr.Textbox(label="π Confidence", interactive=False)
with gr.Group(elem_classes=["result-card"]):
tags = gr.Textbox(label="π·οΈ Predicted Tags", interactive=False)
needs_review = gr.Textbox(label="π Needs Review", interactive=False)
message = gr.Textbox(label="π¬ Details", interactive=False, lines=2)
gr.HTML(f"""
<div class="stats-row">
π Database: <strong>{index.ntotal:,}</strong> tickets indexed
β’
π·οΈ <strong>{len(tag_list)}</strong> tag categories
β’
π’ <strong>{len(dept_prototypes)}</strong> departments
</div>
""")
# ββ Wire events ββ
outputs = [dup_status, ticket_id, route_mode, department, priority, confidence, tags, needs_review, message]
submit_btn.click(fn=ui_process, inputs=ticket_input, outputs=outputs)
ticket_input.submit(fn=ui_process, inputs=ticket_input, outputs=outputs)
clear_btn.add([ticket_input] + outputs)
# ββ Launch βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if __name__ == "__main__":
app.launch(server_name="0.0.0.0", server_port=7860)
|