Spaces:
Sleeping
Sleeping
File size: 14,365 Bytes
77611e6 | 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 | # src/clarification_engine.py
# Clarification Engine β Maximum Information Gain Question Selector
# SupportMind v1.0 β Asmitha
# Updated: Hybrid LLM + Template Architecture
import json
import os
import logging
from dotenv import load_dotenv
load_dotenv()
import numpy as np
from scipy.stats import entropy as scipy_entropy
from typing import Dict, List, Optional
logger = logging.getLogger(__name__)
# ββ Groq LLM Setup βββββββββββββββββββββββββββββββββββββ
try:
from groq import Groq
HAS_GROQ = True
except ImportError:
HAS_GROQ = False
logger.warning("Groq not installed. Using template bank only.")
GROQ_MODEL = os.getenv('GROQ_MODEL', 'llama3-8b-8192')
LLM_ENABLED = os.getenv('LLM_ENABLED', 'true').lower() == 'true'
LLM_TIMEOUT_SECONDS = float(os.getenv('LLM_TIMEOUT_SECONDS', '2.5'))
DEFAULT_CATEGORY_ORDER = [
'billing',
'technical_support',
'account_management',
'feature_request',
'compliance_legal',
'onboarding',
'general_inquiry',
'churn_risk',
]
class ClarificationEngine:
"""
Selects the optimal clarification question to resolve routing ambiguity.
Architecture (Hybrid):
1. Try LLM-generated question (ticket-specific, dynamic)
2. Fall back to template bank if LLM fails or unavailable
3. Fall back to generic question if both fail
When the confidence-gated router returns 'clarify' (confidence 0.55-0.80),
this engine selects one question using either:
- Groq LLaMA3: generates question specific to the exact ticket text
- Template bank: 47 pre-built questions scored by expected info gain
"""
def __init__(self, bank_path: str = 'data/clarification_bank.json'):
# Load template bank
if not os.path.exists(bank_path):
logger.warning(f"Bank not found at {bank_path}, using defaults")
self.bank = self._default_bank()
else:
with open(bank_path, 'r', encoding='utf-8') as f:
self.bank = json.load(f)
logger.info(f"Loaded {len(self.bank)} clarification templates")
# Groq client
self.groq_client = None
self.llm_timeout = LLM_TIMEOUT_SECONDS
if HAS_GROQ and LLM_ENABLED:
api_key = os.getenv('GROQ_API_KEY')
if api_key:
self.groq_client = Groq(
api_key=api_key,
timeout=self.llm_timeout,
max_retries=0,
)
logger.info("Groq LLM client initialized")
else:
logger.warning("GROQ_API_KEY not set. Using templates only.")
# ββ LLM Question Generation βββββββββββββββββββββββββ
def generate_llm_question(self,
ticket_text: str,
top_two_classes: List[str]) -> Optional[Dict]:
"""
Use Groq LLaMA3 to generate a ticket-specific clarification question.
Returns None if generation fails β caller falls back to templates.
"""
if not self.groq_client:
return None
category_descriptions = {
'billing': 'payment, invoice, charge, refund, subscription cost',
'technical_support': 'software error, bug, API issue, feature not working',
'account_management': 'user access, permissions, account settings, SSO',
'feature_request': 'new capability, enhancement, missing feature',
'compliance_legal': 'GDPR, audit, data privacy, regulatory',
'onboarding': 'new user setup, getting started, configuration',
'general_inquiry': 'general question, information request',
'churn_risk': 'cancellation, switching, dissatisfaction',
}
cat_a = top_two_classes[0]
cat_b = top_two_classes[1]
desc_a = category_descriptions.get(cat_a, cat_a)
desc_b = category_descriptions.get(cat_b, cat_b)
prompt = f"""You are a B2B SaaS support triage assistant.
A customer sent this support ticket:
"{ticket_text}"
Our AI is uncertain whether this is:
- Category A: {cat_a} ({desc_a})
- Category B: {cat_b} ({desc_b})
Generate ONE short clarifying question that:
1. References specific details from this exact ticket
2. Has exactly two answer options (one pointing to each category)
3. Is friendly and professional
4. Is under 25 words
Respond with ONLY this JSON, no other text:
{{
"question": "your question here",
"option_a": "short answer pointing to {cat_a}",
"option_b": "short answer pointing to {cat_b}"
}}"""
try:
response = self.groq_client.chat.completions.create(
model=GROQ_MODEL,
messages=[{"role": "user", "content": prompt}],
max_tokens=200,
temperature=0.3,
timeout=self.llm_timeout,
)
raw = response.choices[0].message.content.strip()
# Clean up response
if '```json' in raw:
raw = raw.split('```json')[1].split('```')[0].strip()
elif '```' in raw:
raw = raw.split('```')[1].split('```')[0].strip()
result = json.loads(raw)
# Validate required fields
if not all(k in result for k in ['question', 'option_a', 'option_b']):
raise ValueError("Missing required fields in LLM response")
logger.info(f"LLM question generated successfully")
return {
'question_id': 'LLM_DYNAMIC',
'question_text': result['question'],
'options': [result['option_a'], result['option_b']],
'option_targets': top_two_classes,
'expected_gain': 0.75,
'relevant_classes': top_two_classes,
'source': 'llm_groq',
'fallback': False,
}
except json.JSONDecodeError as e:
logger.warning(f"LLM JSON parse failed: {e}. Falling back to template.")
return None
except Exception as e:
logger.warning(f"LLM generation failed: {e}. Falling back to template.")
return None
# ββ Template Selection ββββββββββββββββββββββββββββββ
def expected_information_gain(self,
question: dict,
current_probs: np.ndarray) -> float:
"""Calculate expected entropy reduction for a template question."""
prior_entropy = scipy_entropy(current_probs + 1e-9)
gains = []
for answer_label, posterior in question['posteriors'].items():
posterior_probs = np.array(posterior)
posterior_probs = posterior_probs / (posterior_probs.sum() + 1e-9)
posterior_entropy = scipy_entropy(posterior_probs + 1e-9)
gain = prior_entropy - posterior_entropy
gains.append(max(gain, 0))
return float(np.mean(gains)) if gains else 0.0
def select_question(self,
current_probs: np.ndarray,
top_two_classes: List[str],
asked_ids: Optional[List[str]] = None,
ticket_text: Optional[str] = None) -> Dict:
"""
Select best clarification question.
Priority:
1. LLM dynamic question (if ticket_text provided and Groq available)
2. Template bank (information gain scoring)
3. Generic fallback
Args:
current_probs: probability distribution [num_classes]
top_two_classes: top two predicted categories
asked_ids: already asked question IDs
ticket_text: original ticket text for LLM generation
"""
# ββ Layer 1: Try LLM ββββββββββββββββββββββββββ
if ticket_text and self.groq_client:
llm_question = self.generate_llm_question(
ticket_text, top_two_classes
)
if llm_question:
return llm_question
# ββ Layer 2: Template bank ββββββββββββββββββββ
asked_ids = asked_ids or []
top_pair = set(top_two_classes[:2])
relevant = [
q for q in self.bank
if top_pair.issubset(set(q.get('relevant_classes', [])))
and q['id'] not in asked_ids
]
if not relevant:
relevant = [
q for q in self.bank
if any(c in q.get('relevant_classes', []) for c in top_two_classes)
and q['id'] not in asked_ids
]
if not relevant:
relevant = [q for q in self.bank if q['id'] not in asked_ids]
# ββ Layer 3: Generic fallback βββββββββββββββββ
if not relevant:
return {
'question_id': 'FALLBACK',
'question_text': 'Could you clarify the main issue you need resolved today?',
'options': [],
'expected_gain': 0.0,
'source': 'fallback',
'fallback': True,
}
# Score templates by info gain
scored = [
(q, self.expected_information_gain(q, current_probs))
for q in relevant
]
scored.sort(key=lambda x: x[1], reverse=True)
best_q, best_gain = scored[0]
return {
'question_id': best_q['id'],
'question_text': best_q['text'],
'options': best_q.get('options', []),
'option_targets': self._infer_option_targets(best_q),
'expected_gain': round(best_gain, 4),
'relevant_classes': best_q.get('relevant_classes', []),
'source': 'template',
'fallback': False,
}
def generate_question(self,
ticket_text: str,
current_probs: np.ndarray,
top_two_classes: Optional[List[str]] = None,
asked_ids: Optional[List[str]] = None) -> Dict:
"""Compatibility wrapper used by the API layer."""
probs = np.asarray(current_probs, dtype=float)
if probs.ndim != 1 or probs.size == 0:
probs = np.ones(len(DEFAULT_CATEGORY_ORDER), dtype=float)
probs = probs / (probs.sum() + 1e-9)
if top_two_classes is None:
top_indices = np.argsort(probs)[::-1][:2]
top_two_classes = [
DEFAULT_CATEGORY_ORDER[i]
for i in top_indices
if i < len(DEFAULT_CATEGORY_ORDER)
]
if len(top_two_classes) < 2:
top_two_classes = DEFAULT_CATEGORY_ORDER[:2]
return self.select_question(
probs,
top_two_classes,
asked_ids=asked_ids,
ticket_text=ticket_text,
)
def get_all_questions(self) -> List[Dict]:
return self.bank
def get_question_by_id(self, question_id: str) -> Optional[Dict]:
for q in self.bank:
if q['id'] == question_id:
return q
return None
def _infer_option_targets(self, question: Dict) -> List[str]:
options = question.get('options', [])
relevant = question.get('relevant_classes', [])
targets = []
keyword_targets = [
('billing', ['billing', 'invoice', 'payment', 'charge', 'refund', 'credit', 'pricing', 'cost', 'bill']),
('technical_support', ['software', 'error', 'technical', 'broken', 'malfunction', 'functionality', 'api', 'integration', 'performance', 'specific issue', 'data movement', 'feature is broken']),
('account_management', ['account', 'plan', 'subscription', 'administrator', 'admin', 'user management', 'regular user', 'settings']),
('feature_request', ['new capability', 'feature', 'request', 'enhancement', 'doesn\'t exist']),
('compliance_legal', ['compliance', 'regulatory', 'audit', 'gdpr', 'security', 'data affected', 'data/gdpr']),
('onboarding', ['new user', 'onboarding', 'guidance', 'training', 'walkthrough', 'setting up']),
('churn_risk', ['continuing', 'switching', 'evaluating options', 'mostly negative', 'concerns about continuing']),
('general_inquiry', ['general', 'guidance', 'not urgent', 'no specific deadline', 'positive']),
]
for i, option in enumerate(options):
option_low = option.lower()
target = None
for category, keywords in keyword_targets:
if any(keyword in option_low for keyword in keywords):
target = category
break
if target is None and i < len(relevant):
target = relevant[i]
targets.append(target or (relevant[0] if relevant else 'general_inquiry'))
return targets
def _default_bank(self) -> list:
return [
{
"id": "Q001",
"text": "Is the main issue related to (A) a software error or (B) your billing or invoice?",
"options": ["Software error", "Billing or invoice"],
"relevant_classes": ["billing", "technical_support"],
"posteriors": {
"technical": [0.85,0.05,0.03,0.02,0.01,0.01,0.02,0.01],
"billing": [0.05,0.82,0.05,0.02,0.02,0.01,0.02,0.01]
}
},
]
if __name__ == '__main__':
engine = ClarificationEngine()
probs = np.array([0.35, 0.30, 0.10, 0.08, 0.05, 0.04, 0.05, 0.03])
top_two = ['billing', 'technical_support']
# Test template
result = engine.select_question(probs, top_two)
print(f"Template: {result['question_text']}")
print(f"Source: {result['source']}")
# Test LLM
ticket = "Hey, export has been broken since Tuesday and our invoice looks wrong too"
result_llm = engine.select_question(probs, top_two, ticket_text=ticket)
print(f"\nLLM: {result_llm['question_text']}")
print(f"Source: {result_llm['source']}")
|