Spaces:
Sleeping
Sleeping
File size: 35,921 Bytes
c2967d6 | 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 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 | #!/usr/bin/env python3
"""
OmniTech Customer Support RAG Agent - FULL VERSION
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Complete agent with:
- Classification workflow
- Customer context integration
- Ticket creation support
- Enhanced error handling
- Gradio integration ready
"""
import asyncio
import json
import logging
import re
import sys
from contextlib import AsyncExitStack
from datetime import datetime
from typing import Any, Dict, List, Optional
# MCP Client
try:
from mcp import ClientSession, StdioServerParameters
from mcp.client.stdio import stdio_client
except ImportError:
print("MCP not installed. Install with: pip install mcp")
sys.exit(1)
import os
from huggingface_hub import InferenceClient
# Configure logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger("omnitech-agent")
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# β 1. Configuration β
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# HuggingFace Inference API
# Set HF_TOKEN environment variable for authenticated access
HF_TOKEN = os.environ.get("HF_TOKEN", "")
HF_MODEL = "meta-llama/Llama-3.1-8B-Instruct"
HF_CLIENT = InferenceClient(token=HF_TOKEN) if HF_TOKEN else None
if not HF_TOKEN:
print("WARNING: HF_TOKEN not set. LLM calls will be skipped.")
print("Set it with: export HF_TOKEN='your_token_here'")
print("Get a token from: https://huggingface.co/settings/tokens")
print()
# Support detection keywords (for routing decision)
SUPPORT_KEYWORDS = {
"security": ["password", "reset", "2fa", "authentication", "hacked", "compromised", "login"],
"device": ["device", "won't turn", "frozen", "screen", "factory reset", "broken", "power"],
"shipping": ["ship", "delivery", "track", "order", "arrive", "package"],
"returns": ["return", "refund", "warranty", "exchange", "money back"],
}
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# β Security: Suspicious Pattern Detection (Goal-Hijacking Prevention) β
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Patterns that may indicate prompt injection or goal-hijacking attempts
SUSPICIOUS_PATTERNS = [
(r"ignore\s+.{0,30}(instructions?|prompts?|rules?|training)", "ignore_instructions"),
(r"disregard\s+.{0,30}(instructions?|rules?|guidelines?)", "disregard_rules"),
(r"new\s+instructions?:", "new_instructions"),
(r"you\s+are\s+now\s+a?", "role_change"),
(r"pretend\s+(to\s+be|you'?re)", "pretend_role"),
(r"act\s+as\s+(if|a|an)", "act_as"),
(r"forget\s+(everything|all|your)", "forget_context"),
(r"override\s+(your|the|all)", "override_attempt"),
(r"system\s*:\s*", "fake_system_prompt"),
(r"\[system\]", "fake_system_tag"),
(r"</?(system|assistant|user)>", "fake_role_tags"),
(r"reveal\s+(your|the)\s+(prompt|instructions?|system)", "reveal_prompt"),
]
# ANSI colors for terminal output
BLUE = "\033[34m"
GREEN = "\033[32m"
CYAN = "\033[36m"
YELLOW = "\033[33m"
RESET = "\033[0m"
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# β 2. Helper Functions β
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def is_support_query(query: str) -> bool:
"""Determine if this is a customer support query vs exploratory."""
query_lower = query.lower()
# Check for support-related keywords
for category, keywords in SUPPORT_KEYWORDS.items():
for keyword in keywords:
if keyword in query_lower:
return True
# Check for question patterns indicating support need
support_patterns = [
r"how do i",
r"how can i",
r"what should i",
r"can you help",
r"i need help",
r"my \w+ (is|isn't|won't)",
r"problem with",
r"issue with"
]
for pattern in support_patterns:
if re.search(pattern, query_lower):
return True
return False
def unwrap_mcp_result(obj):
"""Unwrap MCP result objects to get the actual data."""
if hasattr(obj, "content") and obj.content:
content = obj.content[0].text if obj.content else "{}"
try:
return json.loads(content)
except json.JSONDecodeError:
return content
return obj
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# β 3. RAG Agent Class β
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class OmniTechAgent:
"""RAG Agent for OmniTech Customer Support using MCP."""
def __init__(self):
self.session: Optional[ClientSession] = None
self.exit_stack: Optional[AsyncExitStack] = None
self.mcp_calls_log: List[Dict] = []
self.available_tools: List[str] = []
# Conversation history for multi-turn context
self.conversation_history: List[Dict[str, str]] = []
self.max_history = 3 # Keep last 3 exchanges
# Security logging
self.security_log: List[Dict] = []
self.max_security_log = 50 # Keep last 50 security events
def clear_history(self):
"""Clear conversation history to start a fresh conversation."""
self.conversation_history = []
logger.info("Conversation history cleared")
# βββ Security Methods βββββββββββββββββββββββββββββββββββββββββββββββββ
def _log_security_event(self, event_type: str, severity: str, details: str,
query: str = None, customer_email: str = None):
"""
Log a security event for monitoring and auditing.
Args:
event_type: Type of event (e.g., 'suspicious_pattern', 'tool_blocked')
severity: 'low', 'medium', or 'high'
details: Human-readable description of the event
query: The user query that triggered the event (if applicable)
customer_email: Customer email associated with the event
"""
event = {
"timestamp": datetime.now().isoformat(),
"event_type": event_type,
"severity": severity,
"details": details,
"query": query[:200] if query else None, # Truncate for safety
"customer_email": customer_email
}
self.security_log.append(event)
# Keep log bounded
if len(self.security_log) > self.max_security_log:
self.security_log = self.security_log[-self.max_security_log:]
# Also log to standard logger for server-side visibility
log_msg = f"[SECURITY:{severity.upper()}] {event_type}: {details}"
if severity == "high":
logger.warning(log_msg)
else:
logger.info(log_msg)
def _inspect_input(self, query: str, customer_email: str = None) -> Dict[str, Any]:
"""
Inspect user input for potential goal-hijacking or prompt injection.
Returns:
Dict with 'flagged' (bool), 'patterns_matched' (list), and 'risk_level' (str)
"""
query_lower = query.lower()
patterns_matched = []
for pattern, pattern_name in SUSPICIOUS_PATTERNS:
if re.search(pattern, query_lower, re.IGNORECASE):
patterns_matched.append(pattern_name)
# Determine risk level based on patterns matched
if len(patterns_matched) >= 3:
risk_level = "high"
elif len(patterns_matched) >= 1:
risk_level = "medium"
else:
risk_level = "low"
flagged = len(patterns_matched) > 0
# Log if suspicious patterns detected
if flagged:
self._log_security_event(
event_type="suspicious_input",
severity=risk_level,
details=f"Detected patterns: {', '.join(patterns_matched)}",
query=query,
customer_email=customer_email
)
return {
"flagged": flagged,
"patterns_matched": patterns_matched,
"risk_level": risk_level
}
def get_security_log(self) -> List[Dict]:
"""Return the security log for monitoring."""
return self.security_log.copy()
def clear_security_log(self):
"""Clear the security log."""
self.security_log = []
logger.info("Security log cleared")
def _build_history_context(self) -> str:
"""Build conversation history context for prompts."""
if not self.conversation_history:
return ""
history_lines = []
for exchange in self.conversation_history[-self.max_history:]:
history_lines.append(f"Customer: {exchange['user']}")
history_lines.append(f"Agent: {exchange['assistant']}")
return "\nPrevious Conversation:\n" + "\n".join(history_lines) + "\n"
def _save_exchange(self, user_message: str, assistant_response: str):
"""Save an exchange to conversation history."""
self.conversation_history.append({
"user": user_message,
"assistant": assistant_response
})
# Keep only the last max_history exchanges
if len(self.conversation_history) > self.max_history:
self.conversation_history = self.conversation_history[-self.max_history:]
# βββ MCP Connection ββββββββββββββββββββββββββββββββββββββββββββββββββββ
async def connect(self) -> bool:
"""Start the MCP server and establish connection."""
try:
self.exit_stack = AsyncExitStack()
server_params = StdioServerParameters(
command=sys.executable,
args=["mcp_server.py"],
env=None
)
stdio_transport = await self.exit_stack.enter_async_context(
stdio_client(server_params)
)
read_stream, write_stream = stdio_transport
self.session = await self.exit_stack.enter_async_context(
ClientSession(read_stream, write_stream)
)
await self.session.initialize()
# Verify connection and get available tools
tools_response = await self.session.list_tools()
self.available_tools = [t.name for t in tools_response.tools]
logger.info(f"Connected to MCP server. Tools: {self.available_tools}")
return True
except Exception as e:
logger.error(f"Failed to connect to MCP server: {e}")
return False
async def disconnect(self):
"""Clean up MCP connection."""
if self.exit_stack:
await self.exit_stack.aclose()
# βββ MCP Tool Calls ββββββββββββββββββββββββββββββββββββββββββββββββββββ
async def call_tool(self, tool_name: str, arguments: Dict[str, Any]) -> Any:
"""Call an MCP tool and return the result."""
if not self.session:
raise Exception("MCP session not initialized")
start_time = datetime.now()
try:
result = await self.session.call_tool(tool_name, arguments)
duration = (datetime.now() - start_time).total_seconds()
parsed = unwrap_mcp_result(result)
# Log the call
self.mcp_calls_log.append({
"timestamp": datetime.now().isoformat(),
"tool": tool_name,
"arguments": arguments,
"duration_ms": round(duration * 1000, 2),
"success": "error" not in str(parsed).lower()
})
if len(self.mcp_calls_log) > 20:
self.mcp_calls_log = self.mcp_calls_log[-20:]
return parsed
except Exception as e:
logger.error(f"Tool call failed ({tool_name}): {e}")
return {"error": str(e)}
# βββ Customer Context ββββββββββββββββββββββββββββββββββββββββββββββββββ
async def get_customer_context(self, email: str) -> str:
"""Get customer context string for prompts."""
if "lookup_customer" not in self.available_tools:
return "Customer: Unknown"
customer = await self.call_tool("lookup_customer", {"email": email})
if customer.get("found"):
name = customer.get("name", "Unknown")
tier = customer.get("tier", "Standard")
tickets = customer.get("support_tickets", 0)
context = f"Customer: {name} ({tier} tier)"
if tickets > 0:
context += f" - {tickets} previous tickets"
return context
else:
return f"Customer: {email} (not in database)"
# βββ LLM Integration βββββββββββββββββββββββββββββββββββββββββββββββββββ
def query_llm(self, prompt: str) -> str:
"""Query HuggingFace Inference API using InferenceClient."""
if not HF_CLIENT:
logger.warning("HF_TOKEN not set. Get a token from https://huggingface.co/settings/tokens")
return json.dumps({
"response": "KNOWLEDGE_BASE_ONLY",
"action_needed": "none",
"confidence": 0.7
})
try:
logger.info("Calling HuggingFace LLM...")
# Use chat_completion for instruct models
response = HF_CLIENT.chat_completion(
messages=[{"role": "user", "content": prompt}],
model=HF_MODEL,
max_tokens=500,
temperature=0.7
)
# Extract the response text
result_text = response.choices[0].message.content
logger.info(f"LLM response received ({len(result_text)} chars)")
return result_text
except Exception as e:
error_msg = str(e)
logger.error(f"LLM error: {error_msg}")
# Check for model loading (503)
if "503" in error_msg or "loading" in error_msg.lower():
return json.dumps({
"response": "The AI model is warming up. Please try again in a moment.",
"action_needed": "none",
"confidence": 0.5
})
return json.dumps({
"response": "KNOWLEDGE_BASE_ONLY",
"action_needed": "none",
"confidence": 0.7
})
# βββ Classification Workflow βββββββββββββββββββββββββββββββββββββββββββ
async def handle_support_query(self, query: str, customer_email: str = None) -> Dict[str, Any]:
"""
Handle customer support queries using the 4-step classification workflow.
Steps:
1. Classify query into support category
2. Get prompt template for category
3. Retrieve relevant knowledge
4. Execute LLM with template + knowledge + customer context
"""
workflow_log = []
start_time = datetime.now()
try:
# Get customer context if email provided
customer_context = ""
if customer_email:
customer_context = await self.get_customer_context(customer_email)
workflow_log.append(f"[INFO] {customer_context}")
# Step 1: Classify
workflow_log.append("[1/4] Classifying query...")
classification = await self.call_tool("classify_query", {"user_query": query})
if "error" in classification:
return {"error": f"Classification failed: {classification['error']}"}
category = classification.get("suggested_query", "general_support")
confidence = classification.get("confidence", 0)
workflow_log.append(f"[Result] Category: {category} (confidence: {confidence:.2f})")
# Step 2: Get template
workflow_log.append("[2/4] Getting template...")
template_info = await self.call_tool("get_query_template", {"query_name": category})
template = template_info.get("template", "") if "error" not in template_info else ""
description = template_info.get("description", category)
# Step 3: Retrieve knowledge
workflow_log.append(f"[3/4] Retrieving knowledge for {category}...")
knowledge_info = await self.call_tool("get_knowledge_for_query", {
"category": category,
"query": query,
"max_results": 3
})
knowledge = knowledge_info.get("knowledge", "No documentation found.")
sources = knowledge_info.get("sources", [])
workflow_log.append(f"[INFO] Retrieved {len(sources)} source(s)")
# Step 4: Execute LLM
workflow_log.append("[4/4] Generating response...")
if template:
formatted_prompt = template.format(query=query, knowledge=knowledge)
else:
formatted_prompt = f"""Please help with this customer question: {query}
Based on this documentation:
{knowledge}
Provide a helpful response."""
# Build conversation history context
history_context = self._build_history_context()
# Add customer context, history, and JSON format instruction
full_prompt = f"""{customer_context}
{history_context}
{formatted_prompt}
IMPORTANT: Answer the customer's EXACT question. If they mention a specific product (like "headphones" or "laptop"), respond about THAT product, not products mentioned in the documentation.
If there is conversation history, use it to provide continuity and reference previous exchanges when relevant.
Respond with JSON containing:
- "response": your answer (2-3 sentences)
- "action_needed": "none", "create_ticket", or "escalate" (use "create_ticket" for device issues, account problems, or complaints)
- "confidence": 0-1
JSON Response:"""
llm_response = self.query_llm(full_prompt)
# Parse response - handle JSON wrapped in markdown code blocks
result = None
try:
result = json.loads(llm_response)
except json.JSONDecodeError:
# Try to extract JSON from markdown code blocks (```json ... ```)
json_match = re.search(r'```(?:json)?\s*(\{.*?\})\s*```', llm_response, re.DOTALL)
if json_match:
try:
result = json.loads(json_match.group(1))
except json.JSONDecodeError:
pass
# Also try to find raw JSON object in the response
if result is None:
json_match = re.search(r'\{[^{}]*"response"[^{}]*\}', llm_response, re.DOTALL)
if json_match:
try:
result = json.loads(json_match.group(0))
except json.JSONDecodeError:
pass
# Fallback if no valid JSON found
if result is None:
# Clean up the response - remove JSON artifacts if present
clean_response = re.sub(r'```(?:json)?|```', '', llm_response).strip()
result = {
"response": clean_response[:500] if len(clean_response) > 500 else clean_response,
"action_needed": "none",
"confidence": 0.6
}
# Handle knowledge-base-only fallback
if result.get("response") == "KNOWLEDGE_BASE_ONLY":
result["response"] = f"Based on our {description}:\n\n{knowledge[:400]}..."
result["confidence"] = 0.8
# Create ticket if needed
if result.get("action_needed") == "create_ticket" and customer_email:
if "create_support_ticket" in self.available_tools:
ticket = await self.call_tool("create_support_ticket", {
"customer_email": customer_email,
"issue_type": category,
"description": query,
"priority": "medium"
})
result["ticket_created"] = ticket
workflow_log.append(f"[INFO] Created ticket: {ticket.get('id', 'unknown')}")
# Add metadata
result["classification"] = {
"category": category,
"confidence": confidence,
"description": description
}
result["workflow"] = "classification"
result["workflow_log"] = workflow_log
result["sources"] = sources
result["llm_prompt"] = full_prompt
result["llm_model"] = HF_MODEL
result["customer_email"] = customer_email
result["processing_time_ms"] = (datetime.now() - start_time).total_seconds() * 1000
# Save this exchange to conversation history
self._save_exchange(query, result.get("response", ""))
workflow_log.append("[SUCCESS] Response generated")
return result
except Exception as e:
logger.error(f"Classification workflow error: {e}")
return {
"response": "I encountered an error. Please try again.",
"error": str(e),
"workflow": "classification",
"workflow_log": workflow_log
}
# βββ Direct RAG Workflow βββββββββββββββββββββββββββββββββββββββββββββββ
async def handle_exploratory_query(self, query: str, customer_email: str = None) -> Dict[str, Any]:
"""Handle exploratory queries using direct RAG search."""
start_time = datetime.now()
try:
# Get customer context if email provided
customer_context = ""
if customer_email:
customer_context = await self.get_customer_context(customer_email)
# Search across all knowledge
search_result = await self.call_tool("search_knowledge", {
"query": query,
"max_results": 5
})
matches = search_result.get("matches", [])
if not matches:
return {
"response": "I couldn't find relevant information. Please try rephrasing.",
"workflow": "direct_rag",
"sources": []
}
# Build context
knowledge_parts = [m["content"] for m in matches[:3]]
sources = list(set(m["source"] for m in matches[:3]))
knowledge = "\n\n---\n\n".join(knowledge_parts)
# Build conversation history context
history_context = self._build_history_context()
# Query LLM
prompt = f"""{customer_context}
{history_context}
Based on this documentation:
{knowledge}
Answer this question: {query}
If there is conversation history, use it to provide continuity and reference previous exchanges when relevant.
Respond with JSON containing:
- "response": your answer (2-3 sentences)
- "action_needed": "none"
- "confidence": 0-1
JSON Response:"""
llm_response = self.query_llm(prompt)
# Parse response - handle JSON wrapped in markdown code blocks
result = None
try:
result = json.loads(llm_response)
except json.JSONDecodeError:
# Try to extract JSON from markdown code blocks (```json ... ```)
json_match = re.search(r'```(?:json)?\s*(\{.*?\})\s*```', llm_response, re.DOTALL)
if json_match:
try:
result = json.loads(json_match.group(1))
except json.JSONDecodeError:
pass
# Also try to find raw JSON object in the response
if result is None:
json_match = re.search(r'\{[^{}]*"response"[^{}]*\}', llm_response, re.DOTALL)
if json_match:
try:
result = json.loads(json_match.group(0))
except json.JSONDecodeError:
pass
# Fallback if no valid JSON found
if result is None:
clean_response = re.sub(r'```(?:json)?|```', '', llm_response).strip()
result = {
"response": clean_response[:500] if len(clean_response) > 500 else clean_response,
"action_needed": "none",
"confidence": 0.6
}
if result.get("response") == "KNOWLEDGE_BASE_ONLY":
result["response"] = f"Here's what I found:\n\n{knowledge[:400]}..."
result["workflow"] = "direct_rag"
result["sources"] = sources
result["llm_prompt"] = prompt
result["llm_model"] = HF_MODEL
result["customer_email"] = customer_email
result["processing_time_ms"] = (datetime.now() - start_time).total_seconds() * 1000
# Save this exchange to conversation history
self._save_exchange(query, result.get("response", ""))
return result
except Exception as e:
logger.error(f"RAG search error: {e}")
return {
"response": "Search error. Please try again.",
"error": str(e),
"workflow": "direct_rag"
}
# βββ Main Query Handler ββββββββββββββββββββββββββββββββββββββββββββββββ
async def process_query(self, query: str, customer_email: str = None) -> Dict[str, Any]:
"""
Process a customer query, routing to appropriate workflow.
Support queries β Classification workflow
Exploratory queries β Direct RAG search
"""
# Security: Inspect input for suspicious patterns
security_check = self._inspect_input(query, customer_email)
# Route to appropriate workflow
if is_support_query(query):
logger.info("[ROUTING] Support query β Classification workflow")
result = await self.handle_support_query(query, customer_email)
else:
logger.info("[ROUTING] Exploratory query β Direct RAG")
result = await self.handle_exploratory_query(query, customer_email)
# Add security metadata to result (for transparency in UI)
result["security_check"] = security_check
return result
# βββ Server Stats ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
async def get_server_stats(self) -> Dict[str, Any]:
"""Get MCP server statistics."""
if "get_server_stats" not in self.available_tools:
return {"error": "Stats not available"}
return await self.call_tool("get_server_stats", {})
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# β 4. Synchronous Wrapper (for Gradio integration) β
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class SyncAgent:
"""Synchronous wrapper for use with Gradio."""
def __init__(self):
self.agent = OmniTechAgent()
self.loop = None
self._initialize()
def _initialize(self):
"""Initialize async components."""
try:
self.loop = asyncio.new_event_loop()
asyncio.set_event_loop(self.loop)
success = self.loop.run_until_complete(self.agent.connect())
if not success:
raise Exception("Failed to connect to MCP server")
logger.info("SyncAgent initialized successfully")
except Exception as e:
logger.error(f"Initialization failed: {e}")
raise
def process_query(self, query: str, customer_email: str = None) -> Dict[str, Any]:
"""Synchronous query processing."""
if not self.loop:
return {"error": "Agent not initialized", "response": "System error"}
return self.loop.run_until_complete(
self.agent.process_query(query, customer_email)
)
def get_mcp_log(self) -> List[Dict]:
"""Get MCP call log."""
return self.agent.mcp_calls_log
def clear_history(self):
"""Clear conversation history."""
self.agent.clear_history()
def get_server_stats(self) -> Dict[str, Any]:
"""Get server stats."""
if not self.loop:
return {"error": "Agent not initialized"}
return self.loop.run_until_complete(self.agent.get_server_stats())
def get_available_tools(self) -> List[str]:
"""Get list of available MCP tools."""
return self.agent.available_tools
def get_security_log(self) -> List[Dict]:
"""Get security event log."""
return self.agent.get_security_log()
def clear_security_log(self):
"""Clear security log."""
self.agent.clear_security_log()
def __del__(self):
"""Cleanup."""
if self.loop and self.agent:
try:
self.loop.run_until_complete(self.agent.disconnect())
self.loop.close()
except:
pass
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# β 5. Command-Line Interface β
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
async def interactive_mode():
"""Run interactive CLI for testing."""
agent = OmniTechAgent()
print("=" * 60)
print("OmniTech Customer Support Agent")
print("=" * 60)
print("Connecting to MCP server...")
if not await agent.connect():
print("Failed to connect to MCP server!")
print("Make sure mcp_server.py is in the current directory.")
return
print(f"Connected! Available tools: {agent.available_tools}")
print("\nCommands:")
print(" 'exit' - quit")
print(" 'demo' - run sample queries")
print(" 'stats' - show server statistics")
print(" 'email:xxx' - set customer email for context")
print(" 'clear' - clear conversation history")
print()
print("Note: The agent remembers your last 3 exchanges for follow-up context!")
print()
customer_email = "john.doe@email.com"
print(f"Default customer: {customer_email}")
sample_queries = [
"How do I reset my password?",
"My device won't turn on",
"What is your return policy?",
"Tell me about OmniTech",
]
while True:
try:
user_input = input(f"\n{GREEN}Query:{RESET} ").strip()
if user_input.lower() == "exit":
break
elif user_input.lower() == "demo":
for q in sample_queries:
print(f"\n{GREEN}Query:{RESET} {q}")
result = await agent.process_query(q, customer_email)
response = result.get("response", "No response")
workflow = result.get("workflow", "unknown")
print(f"{YELLOW}[{workflow}]{RESET}")
print(f"{CYAN}{response}{RESET}")
elif user_input.lower() == "stats":
stats = await agent.get_server_stats()
print(f"\n{BLUE}Server Stats:{RESET}")
print(json.dumps(stats, indent=2))
elif user_input.lower() == "clear":
agent.clear_history()
print("Conversation history cleared. Starting fresh!")
elif user_input.lower().startswith("email:"):
customer_email = user_input[6:].strip()
print(f"Customer set to: {customer_email}")
elif user_input:
result = await agent.process_query(user_input, customer_email)
response = result.get("response", "No response")
workflow = result.get("workflow", "unknown")
sources = result.get("sources", [])
category = result.get("classification", {}).get("category", "")
print(f"\n{YELLOW}[{workflow}]{RESET}", end="")
if category:
print(f" {BLUE}({category}){RESET}")
else:
print()
print(f"{CYAN}{response}{RESET}")
if sources:
print(f"\n{BLUE}Sources: {', '.join(sources)}{RESET}")
except KeyboardInterrupt:
break
except Exception as e:
print(f"Error: {e}")
await agent.disconnect()
print("Goodbye!")
if __name__ == "__main__":
asyncio.run(interactive_mode())
|