Spaces:
Running
Running
File size: 24,710 Bytes
09801ca | 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 | # Insight Engine MCP Service
"""
Enterprise Automated Insight Generation Engine
Features:
- Trend detection (MoM, YoY)
- Anomaly detection (Z-score)
- Top/bottom performer analysis
- Risk identification
- Opportunity scoring
- Customer segmentation insights
- Automated recommendations
Usage:
from mcp.insight_engine import InsightEngine
engine = InsightEngine()
result = engine.analyze(data)
"""
import numpy as np
from typing import Dict, List, Any, Optional
from dataclasses import dataclass, field
from enum import Enum
from datetime import datetime
class InsightType(Enum):
TREND = "trend"
ANOMALY = "anomaly"
RISK = "risk"
OPPORTUNITY = "opportunity"
PERFORMANCE = "performance"
RECOMMENDATION = "recommendation"
class InsightSeverity(Enum):
LOW = "low"
MEDIUM = "medium"
HIGH = "high"
CRITICAL = "critical"
@dataclass
class Insight:
"""A single business insight"""
type: InsightType
message: str
severity: InsightSeverity
metric: str
value: Optional[float] = None
change_pct: Optional[float] = None
recommendation: Optional[str] = None
icon: str = "π‘"
@dataclass
class InsightResult:
"""Result from insight engine"""
insights: List[Insight]
summary: str
risk_score: float
opportunity_score: float
health_score: float
top_priority: str
class InsightEngine:
"""
Enterprise Automated Insight Generation Engine.
Analyzes business data and generates:
- Trend insights (growth/decline patterns)
- Anomaly alerts (unusual values)
- Risk warnings
- Opportunity identification
- Actionable recommendations
"""
# Thresholds for analysis
GROWTH_THRESHOLD = 5 # % for significant growth
DECLINE_THRESHOLD = -5 # % for significant decline
ANOMALY_Z_SCORE = 2 # Z-score threshold for anomalies
def __init__(self):
self.insights_generated = 0
def analyze(
self,
revenue: float = 0,
revenue_previous: float = 0,
customers: int = 0,
customers_previous: int = 0,
orders: int = 0,
orders_previous: int = 0,
top_products: Optional[List[Dict]] = None,
top_customers: Optional[List[Dict]] = None,
time_series: Optional[List[Dict]] = None,
churn_rate: float = 0,
profit_margin: float = 0
) -> InsightResult:
"""
Analyze business metrics and generate insights.
Args:
revenue: Current period revenue
revenue_previous: Previous period revenue
customers: Current customer count
customers_previous: Previous customer count
orders: Current order count
orders_previous: Previous order count
top_products: List of top products with revenue
top_customers: List of top customers with revenue
time_series: Time series data for trend analysis
churn_rate: Customer churn rate
profit_margin: Profit margin (0-1)
Returns:
InsightResult with all generated insights
"""
insights = []
# Revenue trends
if revenue and revenue_previous:
insights.extend(self._analyze_revenue_trend(revenue, revenue_previous))
# Customer trends
if customers and customers_previous:
insights.extend(self._analyze_customer_trend(customers, customers_previous))
# Order trends
if orders and orders_previous:
insights.extend(self._analyze_order_trend(orders, orders_previous))
# Product performance
if top_products:
insights.extend(self._analyze_product_performance(top_products))
# Customer concentration
if top_customers and revenue:
insights.extend(self._analyze_customer_concentration(top_customers, revenue))
# Time series anomalies
if time_series:
insights.extend(self._detect_anomalies(time_series))
insights.extend(self._detect_time_trends(time_series))
# Risk analysis
insights.extend(self._analyze_risks(churn_rate, profit_margin, revenue, revenue_previous))
# Opportunity identification
insights.extend(self._identify_opportunities(
revenue, customers, orders, top_products, profit_margin
))
# Calculate scores
risk_score = self._calculate_risk_score(insights)
opp_score = self._calculate_opportunity_score(insights)
health_score = self._calculate_health_score(insights, risk_score, opp_score)
# Generate summary
summary = self._generate_summary(insights, risk_score, opp_score)
# Find top priority
priority = self._find_top_priority(insights)
return InsightResult(
insights=insights,
summary=summary,
risk_score=risk_score,
opportunity_score=opp_score,
health_score=health_score,
top_priority=priority
)
def _analyze_revenue_trend(self, current: float, previous: float) -> List[Insight]:
"""Analyze revenue trend."""
insights = []
change_pct = ((current - previous) / previous * 100) if previous else 0
if change_pct > 20:
insights.append(Insight(
type=InsightType.TREND,
message=f"Revenue grew {change_pct:.1f}% - exceptional performance!",
severity=InsightSeverity.HIGH,
metric="revenue",
value=current,
change_pct=change_pct,
icon="π"
))
elif change_pct > self.GROWTH_THRESHOLD:
insights.append(Insight(
type=InsightType.TREND,
message=f"Revenue increased {change_pct:.1f}% period-over-period",
severity=InsightSeverity.MEDIUM,
metric="revenue",
value=current,
change_pct=change_pct,
icon="π"
))
elif change_pct < -20:
insights.append(Insight(
type=InsightType.RISK,
message=f"Revenue dropped {abs(change_pct):.1f}% - requires immediate attention",
severity=InsightSeverity.CRITICAL,
metric="revenue",
value=current,
change_pct=change_pct,
recommendation="Analyze root causes: pricing, churn, or market conditions",
icon="π¨"
))
elif change_pct < self.DECLINE_THRESHOLD:
insights.append(Insight(
type=InsightType.RISK,
message=f"Revenue decreased {abs(change_pct):.1f}% - monitor closely",
severity=InsightSeverity.HIGH,
metric="revenue",
value=current,
change_pct=change_pct,
recommendation="Review sales pipeline and customer retention",
icon="β οΈ"
))
return insights
def _analyze_customer_trend(self, current: int, previous: int) -> List[Insight]:
"""Analyze customer trend."""
insights = []
change_pct = ((current - previous) / previous * 100) if previous else 0
if change_pct > 10:
insights.append(Insight(
type=InsightType.TREND,
message=f"Customer base grew {change_pct:.1f}%",
severity=InsightSeverity.MEDIUM,
metric="customers",
value=current,
change_pct=change_pct,
icon="π₯"
))
elif change_pct < -10:
insights.append(Insight(
type=InsightType.RISK,
message=f"Customer base declined {abs(change_pct):.1f}%",
severity=InsightSeverity.HIGH,
metric="customers",
value=current,
change_pct=change_pct,
recommendation="Implement customer retention programs",
icon="β οΈ"
))
return insights
def _analyze_order_trend(self, current: int, previous: int) -> List[Insight]:
"""Analyze order volume trend."""
insights = []
change_pct = ((current - previous) / previous * 100) if previous else 0
if change_pct > 15:
insights.append(Insight(
type=InsightType.TREND,
message=f"Order volume up {change_pct:.1f}% - strong demand",
severity=InsightSeverity.MEDIUM,
metric="orders",
value=current,
change_pct=change_pct,
icon="π¦"
))
elif change_pct < -15:
insights.append(Insight(
type=InsightType.RISK,
message=f"Order volume down {abs(change_pct):.1f}%",
severity=InsightSeverity.HIGH,
metric="orders",
value=current,
change_pct=change_pct,
recommendation="Review product catalog and pricing strategy",
icon="π"
))
return insights
def _analyze_product_performance(self, products: List[Dict]) -> List[Insight]:
"""Analyze product performance."""
insights = []
if not products:
return insights
# Top performer
top = products[0] if products else None
if top:
insights.append(Insight(
type=InsightType.PERFORMANCE,
message=f"Top product: {top.get('name', 'Unknown')} - ${top.get('revenue', 0):,.0f}",
severity=InsightSeverity.LOW,
metric="product_revenue",
value=top.get('revenue', 0),
icon="π"
))
# Product concentration risk
if len(products) >= 2:
total = sum(p.get('revenue', 0) for p in products)
top_share = (products[0].get('revenue', 0) / total * 100) if total else 0
if top_share > 50:
insights.append(Insight(
type=InsightType.RISK,
message=f"High product concentration: top product = {top_share:.0f}% of revenue",
severity=InsightSeverity.MEDIUM,
metric="product_concentration",
value=top_share,
recommendation="Diversify product portfolio to reduce risk",
icon="β οΈ"
))
return insights
def _analyze_customer_concentration(self, customers: List[Dict], total_revenue: float) -> List[Insight]:
"""Analyze customer concentration risk."""
insights = []
if not customers or not total_revenue:
return insights
# Top customer concentration
top_5_revenue = sum(c.get('revenue', 0) for c in customers[:5])
concentration = (top_5_revenue / total_revenue * 100) if total_revenue else 0
if concentration > 60:
insights.append(Insight(
type=InsightType.RISK,
message=f"High customer concentration: top 5 = {concentration:.0f}% of revenue",
severity=InsightSeverity.HIGH,
metric="customer_concentration",
value=concentration,
recommendation="Expand customer base to reduce dependency",
icon="π¨"
))
elif concentration > 40:
insights.append(Insight(
type=InsightType.RISK,
message=f"Moderate customer concentration: top 5 = {concentration:.0f}% of revenue",
severity=InsightSeverity.MEDIUM,
metric="customer_concentration",
value=concentration,
icon="β οΈ"
))
return insights
def _detect_anomalies(self, time_series: List[Dict]) -> List[Insight]:
"""Detect anomalies in time series data."""
insights = []
if len(time_series) < 5:
return insights
values = [item.get('value', item.get('revenue', 0)) for item in time_series]
mean = np.mean(values)
std = np.std(values)
if std == 0:
return insights
# Check for anomalies
for i, (item, val) in enumerate(zip(time_series, values)):
z_score = (val - mean) / std
if abs(z_score) > self.ANOMALY_Z_SCORE:
date = item.get('date', f'Period {i+1}')
direction = "spike" if z_score > 0 else "drop"
insights.append(Insight(
type=InsightType.ANOMALY,
message=f"Unusual {direction} detected on {date}",
severity=InsightSeverity.HIGH,
metric="anomaly",
value=val,
recommendation=f"Investigate cause of {direction}",
icon="π"
))
return insights
def _detect_time_trends(self, time_series: List[Dict]) -> List[Insight]:
"""Detect trends in time series."""
insights = []
if len(time_series) < 3:
return insights
values = [item.get('value', item.get('revenue', 0)) for item in time_series]
# Simple trend detection
first_half = np.mean(values[:len(values)//2])
second_half = np.mean(values[len(values)//2:])
change = ((second_half - first_half) / first_half * 100) if first_half else 0
if change > 10:
insights.append(Insight(
type=InsightType.TREND,
message=f"Accelerating growth trend detected (+{change:.1f}%)",
severity=InsightSeverity.MEDIUM,
metric="trend",
change_pct=change,
icon="π"
))
elif change < -10:
insights.append(Insight(
type=InsightType.TREND,
message=f"Declining trend detected ({change:.1f}%)",
severity=InsightSeverity.HIGH,
metric="trend",
change_pct=change,
recommendation="Address root causes of decline",
icon="π"
))
return insights
def _analyze_risks(
self,
churn_rate: float,
profit_margin: float,
revenue: float,
revenue_previous: float
) -> List[Insight]:
"""Identify business risks."""
insights = []
# Churn risk
if churn_rate > 0.15:
insights.append(Insight(
type=InsightType.RISK,
message=f"High churn rate: {churn_rate*100:.1f}%",
severity=InsightSeverity.CRITICAL,
metric="churn",
value=churn_rate * 100,
recommendation="Implement immediate retention initiatives",
icon="π¨"
))
elif churn_rate > 0.08:
insights.append(Insight(
type=InsightType.RISK,
message=f"Elevated churn rate: {churn_rate*100:.1f}%",
severity=InsightSeverity.HIGH,
metric="churn",
value=churn_rate * 100,
recommendation="Review customer satisfaction and support",
icon="β οΈ"
))
# Margin risk
if profit_margin > 0 and profit_margin < 0.1:
insights.append(Insight(
type=InsightType.RISK,
message=f"Low profit margin: {profit_margin*100:.1f}%",
severity=InsightSeverity.HIGH,
metric="margin",
value=profit_margin * 100,
recommendation="Optimize costs or adjust pricing",
icon="β οΈ"
))
return insights
def _identify_opportunities(
self,
revenue: float,
customers: int,
orders: int,
products: Optional[List[Dict]],
margin: float
) -> List[Insight]:
"""Identify growth opportunities."""
insights = []
# Cross-sell opportunity
if customers and orders:
orders_per_customer = orders / customers
if orders_per_customer < 2:
insights.append(Insight(
type=InsightType.OPPORTUNITY,
message=f"Cross-sell opportunity: {orders_per_customer:.1f} orders/customer",
severity=InsightSeverity.MEDIUM,
metric="orders_per_customer",
value=orders_per_customer,
recommendation="Implement cross-sell campaigns to increase order frequency",
icon="π‘"
))
# Upsell opportunity
if revenue and customers:
avg_value = revenue / customers
insights.append(Insight(
type=InsightType.OPPORTUNITY,
message=f"Current customer value: ${avg_value:,.0f} - potential for upselling",
severity=InsightSeverity.LOW,
metric="customer_value",
value=avg_value,
recommendation="Target high-value customers with premium offerings",
icon="π"
))
# Margin improvement opportunity
if margin and margin < 0.3:
potential = revenue * 0.05 # 5% margin improvement
insights.append(Insight(
type=InsightType.OPPORTUNITY,
message=f"Margin improvement could add ${potential:,.0f} to profit",
severity=InsightSeverity.MEDIUM,
metric="margin_opportunity",
value=potential,
recommendation="Review cost structure and pricing strategy",
icon="π°"
))
return insights
def _calculate_risk_score(self, insights: List[Insight]) -> float:
"""Calculate overall risk score (0-100)."""
risk_insights = [i for i in insights if i.type == InsightType.RISK]
if not risk_insights:
return 10 # Low baseline risk
score = 0
for insight in risk_insights:
if insight.severity == InsightSeverity.CRITICAL:
score += 30
elif insight.severity == InsightSeverity.HIGH:
score += 20
elif insight.severity == InsightSeverity.MEDIUM:
score += 10
else:
score += 5
return min(100, score)
def _calculate_opportunity_score(self, insights: List[Insight]) -> float:
"""Calculate opportunity score (0-100)."""
opp_insights = [i for i in insights if i.type == InsightType.OPPORTUNITY]
base_score = len(opp_insights) * 15
return min(100, base_score + 20) # Base opportunity exists
def _calculate_health_score(
self,
insights: List[Insight],
risk_score: float,
opp_score: float
) -> float:
"""Calculate overall business health score."""
# Start at 70
health = 70
# Adjust for risks
health -= risk_score * 0.3
# Boost for opportunities
health += opp_score * 0.1
# Boost for positive trends
positive_trends = sum(1 for i in insights
if i.type == InsightType.TREND
and i.change_pct and i.change_pct > 0)
health += positive_trends * 5
return max(0, min(100, health))
def _generate_summary(
self,
insights: List[Insight],
risk_score: float,
opp_score: float
) -> str:
"""Generate executive summary."""
risk_count = sum(1 for i in insights if i.type == InsightType.RISK)
opp_count = sum(1 for i in insights if i.type == InsightType.OPPORTUNITY)
trend_count = sum(1 for i in insights if i.type == InsightType.TREND)
parts = []
if risk_score > 50:
parts.append(f"β οΈ {risk_count} risks need attention")
elif risk_count > 0:
parts.append(f"βΉοΈ {risk_count} risk(s) identified")
if opp_count > 0:
parts.append(f"π‘ {opp_count} growth opportunities found")
if trend_count > 0:
parts.append(f"π {trend_count} trend insights detected")
return " | ".join(parts) if parts else "Analysis complete - no major findings"
def _find_top_priority(self, insights: List[Insight]) -> str:
"""Find the highest priority insight."""
# Critical risks first
critical = [i for i in insights if i.severity == InsightSeverity.CRITICAL]
if critical:
return critical[0].message
# High severity next
high = [i for i in insights if i.severity == InsightSeverity.HIGH]
if high:
return high[0].message
# Opportunities
opps = [i for i in insights if i.type == InsightType.OPPORTUNITY]
if opps:
return opps[0].message
return "No immediate priorities"
def generate_insights(
revenue: float = 0,
revenue_previous: float = 0,
customers: int = 0,
orders: int = 0,
churn_rate: float = 0.05,
profit_margin: float = 0.2,
time_series: Optional[List[Dict]] = None,
top_products: Optional[List[Dict]] = None,
top_customers: Optional[List[Dict]] = None
) -> Dict[str, Any]:
"""
Convenience function to generate insights.
Returns:
Dict with all insights and scores
"""
engine = InsightEngine()
result = engine.analyze(
revenue=revenue,
revenue_previous=revenue_previous,
customers=customers,
customers_previous=int(customers * 0.95), # Assume 5% growth if not provided
orders=orders,
orders_previous=int(orders * 0.9),
top_products=top_products,
top_customers=top_customers,
time_series=time_series,
churn_rate=churn_rate,
profit_margin=profit_margin
)
return {
"success": True,
"insights": [
{
"type": i.type.value,
"message": i.message,
"severity": i.severity.value,
"metric": i.metric,
"value": i.value,
"change_pct": i.change_pct,
"recommendation": i.recommendation,
"icon": i.icon
}
for i in result.insights
],
"summary": result.summary,
"risk_score": result.risk_score,
"opportunity_score": result.opportunity_score,
"health_score": result.health_score,
"top_priority": result.top_priority
}
# Quick test
if __name__ == "__main__":
result = generate_insights(
revenue=500000,
revenue_previous=450000,
customers=250,
orders=1200,
churn_rate=0.12,
profit_margin=0.18,
top_products=[
{"name": "AI Starter Kit", "revenue": 150000},
{"name": "Pro Pack", "revenue": 100000},
{"name": "Enterprise", "revenue": 80000}
],
top_customers=[
{"name": "Acme Corp", "revenue": 120000},
{"name": "TechStart", "revenue": 80000},
{"name": "DataCo", "revenue": 60000}
]
)
print("Insight Analysis:")
print(f"Summary: {result['summary']}")
print(f"Health Score: {result['health_score']:.0f}/100")
print(f"Risk Score: {result['risk_score']:.0f}/100")
print(f"\nTop Priority: {result['top_priority']}")
print(f"\nInsights ({len(result['insights'])}):")
for i in result['insights'][:5]:
print(f" {i['icon']} [{i['type']}] {i['message']}")
|