continue where the previous AI agent left off: """
π ARF Ultimate Investor Demo v3.8.0 - ENTERPRISE EDITION
ENHANCED VERSION WITH CLEAR BOUNDARIES AND RELIABLE VISUALIZATIONS
Fixed to show clear OSS vs Enterprise boundaries with architectural honesty
"""
import logging
import sys
import traceback
import json
import datetime
import asyncio
import time
import random
from pathlib import Path
from typing import Dict, List, Any, Optional, Tuple
# ===========================================
# CONFIGURE LOGGING FIRST
# ===========================================
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
handlers=[
logging.StreamHandler(sys.stdout),
logging.FileHandler('arf_demo.log')
]
)
logger = logging.getLogger(__name__)
# Add parent directory to path
sys.path.insert(0, str(Path(__file__).parent))
# ===========================================
# BOUNDARY MANAGEMENT SYSTEM - NEW CRITICAL ADDITION
# ===========================================
class BoundaryManager:
"""Manages clear boundaries between OSS and Enterprise"""
@staticmethod
def get_system_boundaries() -> Dict[str, Any]:
"""Get clear system boundary definitions"""
installation = get_installation_status()
boundaries = {
"oss": {
"available": installation["oss_installed"],
"version": installation["oss_version"] or "mock",
"license": "Apache 2.0",
"capabilities": ["advisory", "analysis", "reasoning"],
"cannot_do": ["execute", "modify_infrastructure", "autonomous_healing"],
"label": "β
REAL ARF OSS" if installation["oss_installed"] else "β οΈ MOCK ARF",
"color": "#10b981" if installation["oss_installed"] else "#64748b",
"icon": "β
" if installation["oss_installed"] else "β οΈ"
},
"enterprise": {
"available": installation["enterprise_installed"],
"version": installation["enterprise_version"] or "simulated",
"license": "Commercial" if installation["enterprise_installed"] else "SIMULATED",
"capabilities": ["autonomous_execution", "rollback_guarantees", "novel_protocols"],
"requires": ["infrastructure_access", "safety_controls", "enterprise_license"],
"label": "π REAL Enterprise" if installation["enterprise_installed"] else "π SIMULATED Enterprise",
"color": "#8b5cf6" if installation["enterprise_installed"] else "#f59e0b",
"icon": "π" if installation["enterprise_installed"] else "π"
},
"demo_mode": {
"architecture": "OSS advises β Enterprise executes",
"honesty_level": "Architecturally Honest",
"transparency": "Clear boundaries between real and simulated"
}
}
return boundaries
@staticmethod
def get_boundary_badges() -> str:
"""Get HTML badges showing clear boundaries"""
boundaries = BoundaryManager.get_system_boundaries()
oss = boundaries["oss"]
enterprise = boundaries["enterprise"]
return f"""
ποΈ System Architecture Boundaries
{oss['icon']}
{oss['label']} v{oss['version']}
β
{enterprise['icon']}
{enterprise['label']}
OSS advises ({oss['license']}) β’ Enterprise executes ({enterprise['license']})
Clear separation ensures production safety and architectural honesty
"""
@staticmethod
def create_agent_with_boundary(agent_name: str, status: str,
is_real_arf: bool = True, confidence: float = 0.0) -> str:
"""Create agent display with clear boundary indicator"""
icons = {
"Detection": "π΅οΈββοΈ",
"Recall": "π§ ",
"Decision": "π―"
}
border_color = "#10b981" if is_real_arf else "#f59e0b"
background = "#f0fdf4" if is_real_arf else "#fef3c7"
badge_text = "REAL ARF" if is_real_arf else "SIMULATED"
# Confidence bar
confidence_bar = ""
if confidence > 0:
confidence_color = "#10b981" if confidence >= 0.9 else "#f59e0b" if confidence >= 0.7 else "#ef4444"
confidence_bar = f"""
Confidence
{confidence:.1%}
"""
return f"""
{badge_text}
{icons.get(agent_name, 'π€')}
{agent_name} Agent
{status}
{confidence_bar}
"""
@staticmethod
def create_boundary_indicator(action: str, is_simulated: bool = True) -> str:
"""Create clear execution boundary indicator"""
if is_simulated:
return f"""
π
SIMULATED ENTERPRISE EXECUTION
Action: {action}
Mode: Enterprise Simulation (not real execution)
Boundary: OSS advises β Enterprise would execute
DEMO BOUNDARY
In production, Enterprise edition would execute against real infrastructure
"""
else:
return f"""
β‘
REAL ENTERPRISE EXECUTION
Action: {action}
Mode: Enterprise Autonomous
Boundary: Real execution with safety guarantees
ENTERPRISE+
"""
# ===========================================
# ARF INSTALLATION CHECK SYSTEM - ENHANCED
# ===========================================
def check_arf_installation():
"""
Check if real ARF packages are installed
Returns detailed installation status with boundary info
"""
results = {
"oss_installed": False,
"enterprise_installed": False,
"oss_version": None,
"enterprise_version": None,
"oss_edition": "unknown",
"oss_license": "unknown",
"execution_allowed": False,
"recommendations": [],
"boundaries": {
"oss_can": ["advisory_analysis", "rag_search", "healing_intent"],
"oss_cannot": ["execute", "modify_infra", "autonomous_healing"],
"enterprise_requires": ["license", "infra_access", "safety_controls"]
},
"badges": {
"oss": {"text": "β οΈ Mock ARF", "color": "#f59e0b", "icon": "β οΈ"},
"enterprise": {"text": "π Enterprise Required", "color": "#64748b", "icon": "π"}
},
"timestamp": datetime.datetime.now().isoformat()
}
# Check OSS package
try:
import agentic_reliability_framework as arf_oss
results["oss_installed"] = True
results["oss_version"] = getattr(arf_oss, '__version__', '3.3.7')
# Try to get more info
try:
results["oss_edition"] = arf_oss.OSS_EDITION
results["oss_license"] = arf_oss.OSS_LICENSE
results["execution_allowed"] = arf_oss.EXECUTION_ALLOWED
except Exception as e:
logger.debug(f"Could not get OSS details: {e}")
results["badges"]["oss"] = {
"text": f"β
ARF OSS v{results['oss_version']}",
"color": "#10b981",
"icon": "β
"
}
logger.info(f"β
ARF OSS v{results['oss_version']} detected")
except ImportError as e:
results["recommendations"].append(
"Install real ARF OSS: `pip install agentic-reliability-framework==3.3.7`"
)
logger.info("β οΈ ARF OSS not installed - using mock mode")
# Check Enterprise package
try:
import arf_enterprise
results["enterprise_installed"] = True
results["enterprise_version"] = getattr(arf_enterprise, '__version__', '1.0.2')
results["badges"]["enterprise"] = {
"text": f"π Enterprise v{results['enterprise_version']}",
"color": "#8b5cf6",
"icon": "π"
}
logger.info(f"β
ARF Enterprise v{results['enterprise_version']} detected")
except ImportError as e:
results["recommendations"].append(
"Install ARF Enterprise: `pip install agentic-reliability-enterprise` (requires license)"
)
logger.info("β οΈ ARF Enterprise not installed - using simulation")
return results
# Global installation status cache
_installation_status = None
def get_installation_status():
"""Get cached installation status"""
global _installation_status
if _installation_status is None:
_installation_status = check_arf_installation()
return _installation_status
def get_installation_badges():
"""Get formatted badge HTML for UI"""
installation = get_installation_status()
oss_badge = installation["badges"]["oss"]
enterprise_badge = installation["badges"]["enterprise"]
# Add boundary context
boundaries = BoundaryManager.get_system_boundaries()
return f"""
{oss_badge['icon']} {oss_badge['text']}
{enterprise_badge['icon']} {enterprise_badge['text']}
Architecture: {boundaries['demo_mode']['architecture']} β’
Mode: {boundaries['demo_mode']['honesty_level']}
"""
# ===========================================
# ASYNC UTILITIES - ENHANCED VERSION
# ===========================================
class AsyncRunner:
"""Enhanced async runner with better error handling"""
@staticmethod
def run_async(coro):
"""Run async coroutine in sync context"""
try:
loop = asyncio.get_event_loop()
except RuntimeError:
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
try:
return loop.run_until_complete(coro)
except Exception as e:
logger.error(f"Async execution failed: {e}")
# Return error state instead of crashing
return {"error": str(e), "status": "failed", "boundary_note": "Execution boundary reached"}
@staticmethod
def async_to_sync(async_func):
"""Decorator to convert async function to sync"""
def wrapper(*args, **kwargs):
try:
return AsyncRunner.run_async(async_func(*args, **kwargs))
except Exception as e:
logger.error(f"Async to sync conversion failed: {e}")
# Return a sensible fallback with boundary context
return {"error": str(e), "status": "failed", "boundary_context": "OSS advisory only - execution requires Enterprise"}
return wrapper
# ===========================================
# SIMPLE SETTINGS
# ===========================================
class Settings:
"""Simple settings class"""
def __init__(self):
self.arf_mode = "demo"
self.use_true_arf = True # Use true ARF integration
self.default_scenario = "Cache Miss Storm"
self.max_history_items = 100
self.auto_refresh_seconds = 30
self.show_boundaries = True # NEW: Show clear boundaries
self.architectural_honesty = True # NEW: Be transparent about what's real vs simulated
settings = Settings()
# ===========================================
# RELIABLE VISUALIZATION HELPERS - ENHANCED WITH BOUNDARIES
# ===========================================
def create_simple_telemetry_plot(scenario_name: str, is_real_arf: bool = True):
"""Simple guaranteed-to-work telemetry plot with boundary indicators"""
try:
import plotly.graph_objects as go
# Create telemetry data with anomaly
time_points = list(range(0, 60, 5))
normal_values = [100, 105, 98, 102, 101, 99, 103, 100, 105, 102, 100, 101]
anomaly_values = [100, 105, 98, 102, 350, 420, 380, 410, 105, 102, 100, 101]
fig = go.Figure()
# Normal traffic
fig.add_trace(go.Scatter(
x=time_points,
y=normal_values,
mode='lines',
name='Normal',
line=dict(color='#3b82f6', width=2, dash='dot')
))
# Anomaly
fig.add_trace(go.Scatter(
x=time_points,
y=anomaly_values,
mode='lines+markers',
name='π¨ Anomaly',
line=dict(color='#ef4444', width=3),
marker=dict(size=8, color='#ef4444')
))
# Highlight anomaly region
fig.add_vrect(
x0=20, x1=35,
fillcolor="red", opacity=0.1,
layer="below", line_width=0,
annotation_text="Anomaly Detected",
annotation_position="top left"
)
# Add boundary indicator in title
boundary_text = "REAL ARF OSS" if is_real_arf else "DEMO SIMULATION"
boundary_color = "#10b981" if is_real_arf else "#f59e0b"
fig.update_layout(
title=dict(
text=f'π {scenario_name} - Live Telemetry
'
f''
f'π {boundary_text}',
font=dict(size=16, color='#1e293b')
),
height=300,
paper_bgcolor='white',
plot_bgcolor='white',
xaxis=dict(
title='Time (minutes)',
gridcolor='#e2e8f0',
showgrid=True,
color='#1e293b'
),
yaxis=dict(
title='Requests/sec',
gridcolor='#e2e8f0',
showgrid=True,
color='#1e293b'
),
legend=dict(
yanchor="top",
y=0.99,
xanchor="left",
x=0.01,
bgcolor='rgba(255, 255, 255, 0.9)',
bordercolor='#e2e8f0',
borderwidth=1
),
margin=dict(l=50, r=30, t=60, b=50)
)
return fig
except Exception as e:
logger.error(f"Error creating telemetry plot: {e}")
# Fallback to HTML visualization
return create_html_telemetry_fallback(scenario_name, is_real_arf)
def create_html_telemetry_fallback(scenario_name: str, is_real_arf: bool) -> str:
"""HTML fallback for telemetry visualization with boundary indicators"""
boundary_color = "#10b981" if is_real_arf else "#f59e0b"
boundary_text = "REAL ARF OSS" if is_real_arf else "DEMO SIMULATION"
return f"""
π {boundary_text}
π {scenario_name} - Live Telemetry
Normal: 100%
Warning: 150%
Anomaly: 350%
Status
π¨ Anomaly Detected
"""
def create_simple_impact_plot(scenario_name: str, is_real_arf: bool = True):
"""Simple guaranteed-to-work impact plot with boundary indicators"""
try:
import plotly.graph_objects as go
# Business impact metrics
categories = ['Revenue Loss', 'Users Affected', 'SLA Violation', 'Recovery Time']
values = [8500, 45000, 4.8, 45] # Last one in minutes
colors = ['#ef4444', '#f59e0b', '#8b5cf6', '#3b82f6']
fig = go.Figure(data=[go.Bar(
x=categories,
y=values,
marker_color=colors,
text=[f'${values[0]:,}/hr', f'{values[1]:,}', f'{values[2]}%', f'{values[3]} min'],
textposition='auto',
)])
# Add boundary indicator in title
boundary_text = "REAL ARF OSS" if is_real_arf else "DEMO SIMULATION"
boundary_color = "#10b981" if is_real_arf else "#f59e0b"
fig.update_layout(
title=dict(
text=f'π° {scenario_name} - Business Impact
'
f''
f'π {boundary_text} Analysis',
font=dict(size=16, color='#1e293b')
),
height=300,
paper_bgcolor='white',
plot_bgcolor='white',
xaxis=dict(
title='Impact Metric',
gridcolor='#e2e8f0',
showgrid=True,
color='#1e293b',
tickangle=-45
),
yaxis=dict(
title='Value',
gridcolor='#e2e8f0',
showgrid=True,
color='#1e293b'
),
margin=dict(l=50, r=30, t=60, b=80)
)
return fig
except Exception as e:
logger.error(f"Error creating impact plot: {e}")
# Fallback to HTML visualization
return create_html_impact_fallback(scenario_name, is_real_arf)
def create_html_impact_fallback(scenario_name: str, is_real_arf: bool) -> str:
"""HTML fallback for impact visualization"""
boundary_color = "#10b981" if is_real_arf else "#f59e0b"
boundary_text = "REAL ARF OSS" if is_real_arf else "DEMO SIMULATION"
impact_map = {
"Cache Miss Storm": {"revenue": 8500, "users": 45000, "recovery": 45},
"Database Connection Pool Exhaustion": {"revenue": 4200, "users": 25000, "recovery": 35},
"Kubernetes Memory Leak": {"revenue": 5500, "users": 35000, "recovery": 40},
"API Rate Limit Storm": {"revenue": 3800, "users": 20000, "recovery": 25},
"Network Partition": {"revenue": 12000, "users": 75000, "recovery": 60},
"Storage I/O Saturation": {"revenue": 6800, "users": 30000, "recovery": 50}
}
impact = impact_map.get(scenario_name, {"revenue": 5000, "users": 30000, "recovery": 30})
return f"""
π {boundary_text}
π° {scenario_name} - Business Impact
Revenue Risk
${impact['revenue']:,}/hr
Users Affected
{impact['users']:,}
Manual Recovery
{impact['recovery']} min
ARF Recovery
{int(impact['recovery'] * 0.27)} min
Analysis Mode: {boundary_text}
Confidence: 94% β’ ROI Impact: 5.2Γ
"""
def create_empty_plot(title: str, is_real_arf: bool = True):
"""Create an empty placeholder plot with boundary indicators"""
try:
import plotly.graph_objects as go
boundary_color = "#10b981" if is_real_arf else "#f59e0b"
boundary_text = "REAL ARF OSS" if is_real_arf else "DEMO SIMULATION"
# Create a simple line plot that WILL display
fig = go.Figure()
# Add sample data so it shows something
fig.add_trace(go.Scatter(
x=[1, 2, 3, 4, 5],
y=[2, 3, 1, 4, 3],
mode='lines+markers',
name='Sample Data',
line=dict(color='#3b82f6', width=2)
))
fig.update_layout(
height=300,
title=dict(
text=f'{title}
'
f''
f'π {boundary_text}',
font=dict(size=14, color='#1e293b'),
x=0.5,
xanchor='center'
),
paper_bgcolor='white',
plot_bgcolor='white',
xaxis=dict(
title='Time',
gridcolor='#e2e8f0',
showgrid=True,
color='#1e293b'
),
yaxis=dict(
title='Value',
gridcolor='#e2e8f0',
showgrid=True,
color='#1e293b'
),
margin=dict(l=50, r=30, t=50, b=50),
showlegend=True
)
return fig
except ImportError:
logger.warning("Plotly not available for plots")
# Return HTML fallback
return f"""
π
{title}
Visualization requires Plotly
Install with: pip install plotly
"""
except Exception as e:
logger.error(f"Error creating plot: {e}")
return None
def get_inactive_agent_html(agent_name: str, description: str, is_real_arf: bool = False):
"""Get HTML for inactive agent state with boundary indicators"""
icons = {
"Detection": "π΅οΈββοΈ",
"Recall": "π§ ",
"Decision": "π―"
}
border_color = "#e2e8f0"
background = "#f8fafc"
badge_text = "INACTIVE"
if is_real_arf:
border_color = "#10b981"
background = "#f0fdf4"
badge_text = "REAL ARF (INACTIVE)"
return f"""
{icons.get(agent_name, 'β³')}
{agent_name} Agent
{description}
Status: Inactive
Mode: {badge_text}
WAITING
"""
# ===========================================
# IMPORT MODULAR COMPONENTS - ENHANCED WITH BOUNDARIES
# ===========================================
def import_components() -> Dict[str, Any]:
"""Safely import all components with proper error handling"""
components = {
"all_available": False,
"error": None,
"get_styles": lambda: "", # Default empty styles
"show_boundaries": settings.show_boundaries, # Boundary flag
}
try:
logger.info("Starting component import...")
# First, import gradio (always available in Hugging Face Spaces)
try:
import gradio as gr
components["gr"] = gr
logger.info("β
Gradio imported successfully")
except ImportError as e:
logger.error(f"β Gradio not available: {e}")
raise ImportError("Gradio is required but not available")
# Import UI styles FIRST (to avoid circular dependencies)
try:
from ui.styles import get_styles
components["get_styles"] = get_styles
logger.info("β
UI styles imported successfully")
except ImportError as e:
logger.warning(f"β οΈ UI styles not available: {e}")
# Use empty styles as fallback
components["get_styles"] = lambda: ""
# Import UI components
try:
from ui.components import (
create_header, create_status_bar, create_tab1_incident_demo,
create_tab2_business_roi, create_tab3_enterprise_features,
create_tab4_audit_trail, create_tab5_learning_engine,
create_footer
)
components.update({
"create_header": create_header,
"create_status_bar": create_status_bar,
"create_tab1_incident_demo": create_tab1_incident_demo,
"create_tab2_business_roi": create_tab2_business_roi,
"create_tab3_enterprise_features": create_tab3_enterprise_features,
"create_tab4_audit_trail": create_tab4_audit_trail,
"create_tab5_learning_engine": create_tab5_learning_engine,
"create_footer": create_footer,
})
logger.info("β
UI components imported successfully")
except ImportError as e:
logger.error(f"β UI components not available: {e}")
# Create minimal UI fallbacks with boundary indicators
gr = components["gr"]
components.update({
"create_header": lambda version="3.3.7", mock=False: gr.HTML(
f"""
π ARF v{version} Demo
Clear boundaries: OSS advises β Enterprise executes
"""
),
"create_status_bar": lambda: gr.HTML(BoundaryManager.get_boundary_badges()),
"create_tab1_incident_demo": lambda *args: [gr.Dropdown()] * 24,
"create_tab2_business_roi": lambda *args: [gr.Plot()] * 7,
"create_tab3_enterprise_features": lambda: [gr.JSON()] * 8,
"create_tab4_audit_trail": lambda: [gr.Button()] * 6,
"create_tab5_learning_engine": lambda: [gr.Plot()] * 10,
"create_footer": lambda: gr.HTML(
""
),
})
# Try to import scenarios from demo module
try:
from demo.scenarios import INCIDENT_SCENARIOS
components["INCIDENT_SCENARIOS"] = INCIDENT_SCENARIOS
logger.info(f"β
Loaded {len(INCIDENT_SCENARIOS)} scenarios from demo module")
except ImportError as e:
logger.warning(f"β οΈ Demo scenarios not available: {e}")
# Create minimal fallback scenarios with boundary context
components["INCIDENT_SCENARIOS"] = {
"Cache Miss Storm": {
"component": "Redis Cache Cluster",
"severity": "HIGH",
"impact_radius": "85% of users",
"business_impact": {"revenue_loss_per_hour": 8500},
"detection_time": "45 seconds",
"tags": ["cache", "redis", "latency"],
"metrics": {"affected_users": 45000},
"boundary_note": "OSS analysis only - execution requires Enterprise"
}
}
# Try to import TrueARF337Orchestrator
try:
from core.true_arf_orchestrator import TrueARF337Orchestrator
components["DemoOrchestrator"] = TrueARF337Orchestrator
logger.info("β
Using TrueARF337Orchestrator with real v3.3.7 integration")
except ImportError as e:
logger.warning(f"β οΈ TrueARF337Orchestrator not available: {e}")
# Fall back to real ARF integration
try:
from core.real_arf_integration import RealARFIntegration
components["DemoOrchestrator"] = RealARFIntegration
logger.info("β
Falling back to RealARFIntegration")
except ImportError as e2:
logger.warning(f"β οΈ RealARFIntegration also not available: {e2}")
# Create a minimal mock orchestrator with boundary awareness
class MockOrchestrator:
async def analyze_incident(self, scenario_name, scenario_data):
return {
"status": "mock",
"scenario": scenario_name,
"message": "Mock analysis (no real ARF available)",
"boundary_note": "OSS advisory mode - execution requires Enterprise",
"demo_display": {
"real_arf_version": "mock",
"true_oss_used": False,
"enterprise_simulated": True,
"architectural_boundary": "OSS advises β Enterprise would execute"
}
}
async def execute_healing(self, scenario_name, mode="autonomous"):
return {
"status": "mock",
"scenario": scenario_name,
"message": "Mock execution (no real ARF available)",
"boundary_note": "Simulated Enterprise execution - real execution requires infrastructure",
"enterprise_features_used": ["simulated_execution", "mock_rollback", "demo_mode"]
}
components["DemoOrchestrator"] = MockOrchestrator
logger.info("β οΈ Using mock orchestrator with boundary awareness")
# Try to import ROI calculator
try:
import importlib.util
spec = importlib.util.find_spec("core.calculators")
if spec is not None:
from core.calculators import EnhancedROICalculator
components["EnhancedROICalculator"] = EnhancedROICalculator()
logger.info("β
EnhancedROICalculator imported successfully")
else:
raise ImportError("core.calculators module not found")
except ImportError as e:
logger.warning(f"β οΈ EnhancedROICalculator not available: {e}")
class MockCalculator:
def calculate_comprehensive_roi(self, **kwargs):
return {
"status": "β
Calculated Successfully",
"summary": {
"your_annual_impact": "$1,530,000",
"potential_savings": "$1,254,600",
"enterprise_cost": "$625,000",
"roi_multiplier": "5.2Γ",
"payback_months": "6.0",
"annual_roi_percentage": "420%",
"boundary_context": "Based on OSS analysis + simulated Enterprise execution"
},
"boundary_note": "ROI calculation includes OSS advisory value and simulated Enterprise execution benefits"
}
components["EnhancedROICalculator"] = MockCalculator()
logger.info("β οΈ Using mock ROI calculator with boundary context")
# Try to import visualization engine with boundary awareness
try:
spec = importlib.util.find_spec("core.visualizations")
if spec is not None:
from core.visualizations import EnhancedVisualizationEngine
# Wrap the visualization engine to add boundary indicators
class BoundaryAwareVisualizationEngine(EnhancedVisualizationEngine):
def create_executive_dashboard(self, data=None, is_real_arf=True):
result = super().create_executive_dashboard(data)
# Add boundary indicator if it's a Plotly figure
if hasattr(result, 'update_layout'):
boundary_color = "#10b981" if is_real_arf else "#f59e0b"
boundary_text = "REAL ARF OSS" if is_real_arf else "SIMULATED"
result.update_layout(
title=f"{result.layout.title.text}
"
f""
f"π {boundary_text}"
)
return result
def create_telemetry_plot(self, scenario_name, anomaly_detected=True, is_real_arf=True):
return create_simple_telemetry_plot(scenario_name, is_real_arf)
def create_impact_gauge(self, scenario_name, is_real_arf=True):
return create_simple_impact_plot(scenario_name, is_real_arf)
def create_timeline_comparison(self, is_real_arf=True):
# Use the simple timeline from original app.py
try:
import plotly.graph_objects as go
phases = ["Detection", "Analysis", "Decision", "Execution", "Recovery"]
manual_times = [300, 1800, 1200, 1800, 3600] # seconds
arf_times = [45, 30, 60, 720, 0]
# Convert to minutes for readability
manual_times_min = [t/60 for t in manual_times]
arf_times_min = [t/60 for t in arf_times]
fig = go.Figure()
boundary_color = "#10b981" if is_real_arf else "#f59e0b"
boundary_text = "REAL ARF" if is_real_arf else "SIMULATED"
fig.add_trace(go.Bar(
name='Manual Process',
x=phases,
y=manual_times_min,
marker_color='#ef4444',
text=[f"{t:.0f}m" for t in manual_times_min],
textposition='auto'
))
fig.add_trace(go.Bar(
name=f'ARF Autonomous ({boundary_text})',
x=phases,
y=arf_times_min,
marker_color=boundary_color,
text=[f"{t:.0f}m" for t in arf_times_min],
textposition='auto'
))
total_manual = sum(manual_times_min)
total_arf = sum(arf_times_min)
fig.update_layout(
title=f"β° Incident Timeline Comparison
"
f""
f"Total: {total_manual:.0f}m manual vs {total_arf:.0f}m ARF "
f"({((total_manual - total_arf) / total_manual * 100):.0f}% faster)",
barmode='group',
height=400,
plot_bgcolor='rgba(0,0,0,0)',
paper_bgcolor='rgba(0,0,0,0)',
legend=dict(
orientation="h",
yanchor="bottom",
y=1.02,
xanchor="right",
x=1
),
yaxis_title="Time (minutes)"
)
return fig
except Exception as e:
logger.error(f"Timeline plot failed: {e}")
return create_empty_plot("Timeline Comparison", is_real_arf)
components["EnhancedVisualizationEngine"] = BoundaryAwareVisualizationEngine()
logger.info("β
EnhancedVisualizationEngine imported successfully with boundary awareness")
else:
raise ImportError("core.visualizations module not found")
except ImportError as e:
logger.warning(f"β οΈ EnhancedVisualizationEngine not available: {e}")
class MockVisualizationEngine:
def create_executive_dashboard(self, data=None, is_real_arf=True):
return create_empty_plot("Executive Dashboard", is_real_arf)
def create_telemetry_plot(self, scenario_name, anomaly_detected=True, is_real_arf=True):
return create_simple_telemetry_plot(scenario_name, is_real_arf)
def create_impact_gauge(self, scenario_name, is_real_arf=True):
return create_simple_impact_plot(scenario_name, is_real_arf)
def create_timeline_comparison(self, is_real_arf=True):
return create_empty_plot("Timeline Comparison", is_real_arf)
components["EnhancedVisualizationEngine"] = MockVisualizationEngine()
logger.info("β οΈ Using mock visualization engine with boundary indicators")
components["all_available"] = True
components["error"] = None
logger.info("β
Successfully imported all modular components with boundary awareness")
except Exception as e:
logger.error(f"β CRITICAL IMPORT ERROR: {e}")
logger.error(traceback.format_exc())
components["error"] = str(e)
components["all_available"] = False
# Ensure we have minimal components with boundary context
if "gr" not in components:
try:
import gradio as gr
components["gr"] = gr
except:
pass
# Ensure we have scenarios with boundary notes
if "INCIDENT_SCENARIOS" not in components:
components["INCIDENT_SCENARIOS"] = {
"Cache Miss Storm": {
"component": "Redis Cache Cluster",
"severity": "HIGH",
"business_impact": {"revenue_loss_per_hour": 8500},
"boundary_note": "OSS analysis only - execution requires Enterprise"
}
}
return components
# ===========================================
# GLOBAL COMPONENTS - LAZY LOADED
# ===========================================
_components = None
_audit_manager = None
def get_components() -> Dict[str, Any]:
"""Lazy load components singleton"""
global _components
if _components is None:
_components = import_components()
return _components
# ===========================================
# AUDIT TRAIL MANAGER - ENHANCED WITH BOUNDARY INFO
# ===========================================
class AuditTrailManager:
"""Enhanced audit trail manager with boundary tracking"""
def __init__(self):
self.executions = []
self.incidents = []
self.boundary_crossings = []
logger.info("AuditTrailManager initialized with boundary tracking")
def add_execution(self, scenario: str, mode: str, success: bool = True,
savings: float = 0, boundary_note: str = "") -> Dict:
"""Add execution to audit trail with boundary context"""
entry = {
"time": datetime.datetime.now().strftime("%H:%M"),
"scenario": scenario,
"mode": mode,
"status": "β
Success" if success else "β Failed",
"savings": f"${savings:,.0f}",
"details": f"{mode} execution at {datetime.datetime.now().isoformat()}",
"boundary_note": boundary_note or "OSS advisory β Enterprise execution boundary"
}
self.executions.insert(0, entry)
# Track boundary crossing
if "Enterprise" in mode or "Autonomous" in mode:
self.boundary_crossings.append({
"time": datetime.datetime.now().isoformat(),
"boundary": "OSS β Enterprise",
"scenario": scenario,
"note": "Crossed from OSS advisory to Enterprise execution"
})
return entry
def add_incident(self, scenario: str, severity: str = "HIGH",
boundary_context: str = "") -> Dict:
"""Add incident to audit trail with boundary context"""
entry = {
"time": datetime.datetime.now().strftime("%H:%M"),
"scenario": scenario,
"severity": severity,
"component": get_components()["INCIDENT_SCENARIOS"].get(scenario, {}).get("component", "unknown"),
"status": "Analyzed",
"boundary_context": boundary_context or "OSS advisory analysis only"
}
self.incidents.insert(0, entry)
return entry
def get_execution_table(self) -> List[List]:
"""Get execution table data with boundary notes"""
return [
[e["time"], e["scenario"], e["mode"], e["status"], e["savings"],
f"{e['details'][:30]}... {e.get('boundary_note', '')[:20]}..."]
for e in self.executions[:10]
]
def get_incident_table(self) -> List[List]:
"""Get incident table data with boundary context"""
return [
[e["time"], e["component"], e["scenario"], e["severity"],
f"{e['status']} ({e.get('boundary_context', 'OSS')})"]
for e in self.incidents[:15]
]
def get_boundary_report(self) -> Dict[str, Any]:
"""Get report on boundary crossings"""
return {
"total_crossings": len(self.boundary_crossings),
"crossings": self.boundary_crossings[-5:], # Last 5 crossings
"summary": f"{len(self.boundary_crossings)} OSSβEnterprise boundary crossings tracked"
}
def clear(self) -> None:
"""Clear audit trail"""
self.executions = []
self.incidents = []
self.boundary_crossings = []
def get_audit_manager() -> AuditTrailManager:
"""Lazy load audit manager singleton"""
global _audit_manager
if _audit_manager is None:
_audit_manager = AuditTrailManager()
return _audit_manager
# ===========================================
# HELPER FUNCTIONS - ENHANCED WITH BOUNDARY CONTEXT
# ===========================================
def get_scenario_impact(scenario_name: str) -> float:
"""Get average impact for a given scenario"""
impact_map = {
"Cache Miss Storm": 8500,
"Database Connection Pool Exhaustion": 4200,
"Kubernetes Memory Leak": 5500,
"API Rate Limit Storm": 3800,
"Network Partition": 12000,
"Storage I/O Saturation": 6800
}
return impact_map.get(scenario_name, 5000)
def extract_roi_multiplier(roi_result: Dict) -> float:
"""Extract ROI multiplier from EnhancedROICalculator result"""
try:
# Try to get from summary
if "summary" in roi_result and "roi_multiplier" in roi_result["summary"]:
roi_str = roi_result["summary"]["roi_multiplier"]
# Handle format like "5.2Γ"
if "Γ" in roi_str:
return float(roi_str.replace("Γ", ""))
return float(roi_str)
# Try to get from scenarios
if "scenarios" in roi_result and "base_case" in roi_result["scenarios"]:
roi_str = roi_result["scenarios"]["base_case"]["roi"]
if "Γ" in roi_str:
return float(roi_str.replace("Γ", ""))
return float(roi_str)
# Try direct access
if "roi_multiplier" in roi_result:
roi_val = roi_result["roi_multiplier"]
if isinstance(roi_val, (int, float)):
return float(roi_val)
return 5.2 # Default fallback
except Exception as e:
logger.warning(f"Failed to extract ROI multiplier: {e}, using default 5.2")
return 5.2
# ===========================================
# VISUALIZATION HELPERS - USING SIMPLE PLOTS WITH BOUNDARIES
# ===========================================
def create_telemetry_plot(scenario_name: str, is_real_arf: bool = True):
"""Create a telemetry visualization for the selected scenario"""
try:
# Use our enhanced simple plot with boundary indicators
return create_simple_telemetry_plot(scenario_name, is_real_arf)
except Exception as e:
logger.error(f"Failed to create telemetry plot: {e}")
return create_simple_telemetry_plot(scenario_name, is_real_arf)
def create_impact_plot(scenario_name: str, is_real_arf: bool = True):
"""Create a business impact visualization"""
try:
# Use our enhanced simple plot with boundary indicators
return create_simple_impact_plot(scenario_name, is_real_arf)
except Exception as e:
logger.error(f"Failed to create impact plot: {e}")
return create_simple_impact_plot(scenario_name, is_real_arf)
def create_timeline_plot(scenario_name: str, is_real_arf: bool = True):
"""Create an incident timeline visualization"""
try:
# Use simple timeline from original app.py
import plotly.graph_objects as go
# Timeline events
events = ['Incident Start', 'ARF Detection', 'Analysis', 'Resolution']
times = [0, 0.75, 2.5, 12] # minutes
colors = ['#ef4444', '#f59e0b', '#3b82f6', '#10b981']
icons = ['π¨', 'π΅οΈββοΈ', 'π§ ', 'β
']
fig = go.Figure()
# Add events as markers
for i, (event, time, color, icon) in enumerate(zip(events, times, colors, icons)):
fig.add_trace(go.Scatter(
x=[time],
y=[1],
mode='markers+text',
marker=dict(size=20, color=color, symbol='circle'),
text=[f'{icon}
{event}
{time} min'],
textposition='top center',
name=event,
hoverinfo='text',
showlegend=False
))
# Add connecting line
fig.add_trace(go.Scatter(
x=times,
y=[1, 1, 1, 1],
mode='lines',
line=dict(color='#64748b', width=2, dash='dash'),
showlegend=False
))
# Add boundary indicator in title
boundary_text = "REAL ARF OSS" if is_real_arf else "DEMO SIMULATION"
boundary_color = "#10b981" if is_real_arf else "#f59e0b"
fig.update_layout(
title=dict(
text=f'β° {scenario_name} - Incident Timeline
'
f''
f'π {boundary_text}',
font=dict(size=16, color='#1e293b')
),
height=300,
paper_bgcolor='white',
plot_bgcolor='white',
xaxis=dict(
title='Time (minutes)',
range=[-1, max(times) + 2],
gridcolor='#e2e8f0',
showgrid=True,
color='#1e293b'
),
yaxis=dict(
showticklabels=False,
range=[0.8, 1.2],
color='#1e293b'
),
showlegend=False,
margin=dict(l=50, r=30, t=60, b=50)
)
return fig
except Exception as e:
logger.error(f"Failed to create timeline plot: {e}")
return create_empty_plot(f'Timeline: {scenario_name}', is_real_arf)
# ===========================================
# SCENARIO UPDATE HANDLER - ENHANCED WITH BOUNDARIES
# ===========================================
def update_scenario_display(scenario_name: str) -> tuple:
"""Update all scenario-related displays with scenario-specific data"""
scenario = get_components()["INCIDENT_SCENARIOS"].get(scenario_name, {})
impact = scenario.get("business_impact", {})
metrics = scenario.get("metrics", {})
# Get boundary context
boundaries = BoundaryManager.get_system_boundaries()
oss_label = boundaries["oss"]["label"]
enterprise_label = boundaries["enterprise"]["label"]
# Create scenario card HTML with boundary context
scenario_html = f"""
π¨ {scenario_name}
{scenario.get('severity', 'HIGH')}
Component:
{scenario.get('component', 'Unknown').replace('_', ' ').title()}
Affected Users:
{metrics.get('affected_users', 'Unknown') if 'affected_users' in metrics else 'Unknown'}
Revenue Risk:
${impact.get('revenue_loss_per_hour', 0):,}/hour
Detection Time:
45 seconds (ARF AI)
{scenario.get('component', 'unknown').split('_')[0] if '_' in scenario.get('component', '') else scenario.get('component', 'unknown')}
{scenario.get('severity', 'high').lower()}
{oss_label.split(' ')[-1]}
{enterprise_label.split(' ')[-1]}
Architecture: {oss_label} advises β {enterprise_label} would execute
"""
# Create visualizations with boundary context
is_real_arf = boundaries["oss"]["available"]
telemetry_plot = create_simple_telemetry_plot(scenario_name, is_real_arf)
impact_plot = create_simple_impact_plot(scenario_name, is_real_arf)
timeline_plot = create_timeline_plot(scenario_name, is_real_arf)
return (
scenario_html,
telemetry_plot,
impact_plot,
timeline_plot
)
# ===========================================
# TRUE ARF ANALYSIS HANDLER - ENHANCED WITH BOUNDARY AWARENESS
# ===========================================
@AsyncRunner.async_to_sync
async def run_true_arf_analysis(scenario_name: str):
"""Run true ARF v3.3.7 analysis with OSS + Enterprise simulation"""
try:
logger.info(f"Running TRUE ARF analysis for: {scenario_name}")
scenario = get_components()["INCIDENT_SCENARIOS"].get(scenario_name, {})
if not scenario:
raise ValueError(f"Scenario '{scenario_name}' not found")
# Check installation status and boundaries
installation = get_installation_status()
real_arf_available = installation["oss_installed"]
boundaries = BoundaryManager.get_system_boundaries()
# Use TrueARF337Orchestrator if available
orchestrator = get_components()["DemoOrchestrator"]()
analysis = await orchestrator.analyze_incident(scenario_name, scenario)
# Check for errors
if analysis.get("status") == "error":
error_msg = analysis.get("message", "Unknown error")
raise ValueError(f"Analysis failed: {error_msg}")
# Add to audit trail with boundary context
get_audit_manager().add_incident(
scenario_name,
scenario.get("severity", "HIGH"),
boundary_context=f"OSS analysis via {boundaries['oss']['label']}"
)
# Update incident table
incident_table_data = get_audit_manager().get_incident_table()
# Extract values from analysis
demo_display = analysis.get("demo_display", {})
real_arf_version = demo_display.get("real_arf_version", "mock")
true_oss_used = analysis.get("true_oss_used", False)
enterprise_simulated = analysis.get("enterprise_simulated", False)
# Get analysis data based on mode
if true_oss_used:
oss_analysis = analysis.get("oss_analysis", {})
analysis_data = oss_analysis.get("analysis", {})
detection_result = analysis_data.get("detection", {})
detection_confidence = detection_result.get("confidence", 0.987)
detection_time_seconds = detection_result.get("detection_time_ms", 45000) / 1000
similar_incidents = analysis_data.get("recall", [])
similar_count = len(similar_incidents)
decision_data = analysis_data.get("decision", {})
decision_confidence = decision_data.get("confidence", 0.94)
success_rate = decision_data.get("historical_success_rate", 0.87)
# Check for enterprise enhancements
enterprise_enhancements = analysis.get("enterprise_enhancements", {})
novel_execution = enterprise_enhancements is not None and enterprise_enhancements.get("enterprise_available", False)
if enterprise_enhancements:
enhancements = enterprise_enhancements.get("enhancements", {})
rollback_guarantee = enhancements.get("rollback_guarantees", {}).get("guarantee", "N/A")
else:
rollback_guarantee = "N/A"
oss_results = {
"status": "β
TRUE ARF OSS Analysis Complete",
"arf_version": "3.3.7",
"edition": "OSS (Apache 2.0)",
"license": "Apache 2.0",
"scenario": scenario_name,
"confidence": decision_confidence,
"novel_execution": novel_execution,
"rollback_guarantee": rollback_guarantee,
"agents_executed": ["Detection", "Recall", "Decision"],
"boundary_context": f"Analysis via {boundaries['oss']['label']}",
"execution_boundary": f"Execution requires {boundaries['enterprise']['label']}",
"findings": [
f"Anomaly detected with {detection_confidence:.1%} confidence",
f"{similar_count} similar incidents found in RAG memory",
f"Historical success rate for similar actions: {success_rate:.1%}",
f"True ARF OSS package used: β
Yes",
f"Enterprise features available: {'β
Simulated' if enterprise_simulated else 'β Not installed'}",
f"Architectural boundary: OSS advises β Enterprise executes"
],
"recommendations": [
"Scale resources based on historical patterns",
"Implement circuit breaker pattern",
"Add enhanced monitoring for key metrics",
f"Rollback guarantee: {rollback_guarantee}",
"Upgrade to Enterprise for autonomous execution"
],
"healing_intent": decision_data,
"architectural_note": "This is the OSS advisory boundary. Execution requires Enterprise edition."
}
else:
# Mock fallback
detection_result = analysis.get("detection", {})
detection_confidence = detection_result.get("confidence", 0.987)
detection_time_seconds = detection_result.get("detection_time_seconds", 45)
similar_incidents = analysis.get("recall", [])
similar_count = len(similar_incidents)
decision_confidence = analysis.get("confidence", 0.94)
healing_intent = analysis.get("decision", {})
success_rate = healing_intent.get("success_rate", 0.87)
oss_results = {
"status": "β οΈ Enhanced Mock Analysis",
"arf_version": "mock",
"scenario": scenario_name,
"confidence": decision_confidence,
"agents_executed": ["Detection", "Recall", "Decision"],
"boundary_context": "Mock analysis - real ARF OSS not installed",
"execution_boundary": "Execution requires Enterprise edition",
"findings": [
f"Anomaly detected with {detection_confidence:.1%} confidence",
f"{similar_count} similar incidents found in RAG memory",
f"Historical success rate for similar actions: {success_rate:.1%}",
f"Detection time: {detection_time_seconds} seconds",
f"Install agentic-reliability-framework==3.3.7 for true OSS analysis",
f"Architectural boundary: OSS advises β Enterprise executes"
],
"recommendations": [
"Scale resources based on historical patterns",
"Implement circuit breaker pattern",
"Add enhanced monitoring for key metrics",
"Install true ARF OSS package for production use",
"Upgrade to Enterprise for autonomous execution"
],
"healing_intent": healing_intent,
"install_command": "pip install agentic-reliability-framework==3.3.7",
"architectural_note": "Mock mode demonstrates the architecture. Real OSS provides advisory intelligence."
}
# Create agent HTML with clear boundary indicators using BoundaryManager
detection_html = BoundaryManager.create_agent_with_boundary(
agent_name="Detection",
status=f"Anomaly detected: {detection_confidence:.1%} confidence",
is_real_arf=true_oss_used,
confidence=detection_confidence
)
recall_html = BoundaryManager.create_agent_with_boundary(
agent_name="Recall",
status=f"{similar_count} similar incidents found in RAG memory",
is_real_arf=true_oss_used,
confidence=0.92 # Default recall confidence
)
decision_html = BoundaryManager.create_agent_with_boundary(
agent_name="Decision",
status=f"Generating healing intent with {decision_confidence:.1%} confidence",
is_real_arf=true_oss_used,
confidence=decision_confidence
)
logger.info(f"Analysis completed successfully for {scenario_name} (True ARF: {real_arf_version})")
return (
detection_html, recall_html, decision_html,
oss_results, incident_table_data
)
except Exception as e:
logger.error(f"Analysis failed: {e}", exc_info=True)
# Return error state with boundary context
boundaries = BoundaryManager.get_system_boundaries()
error_html = BoundaryManager.create_agent_with_boundary(
agent_name="Error",
status=f"Analysis failed: {str(e)[:80]}...",
is_real_arf=False,
confidence=0.0
)
error_results = {
"status": "β Analysis Failed",
"error": str(e),
"scenario": scenario_name,
"boundary_context": f"OSS advisory via {boundaries['oss']['label']}",
"suggestion": "Check logs and try again. Ensure ARF OSS is installed for real analysis."
}
return (
error_html, error_html, error_html,
error_results, []
)
# ===========================================
# ENTERPRISE EXECUTION HANDLER - ENHANCED WITH BOUNDARY CLARITY
# ===========================================
def execute_enterprise_healing(scenario_name, approval_required, mcp_mode_value):
"""Execute enterprise healing with clear boundary indicators"""
import gradio as gr
scenario = get_components()["INCIDENT_SCENARIOS"].get(scenario_name, {})
boundaries = BoundaryManager.get_system_boundaries()
# Determine mode
mode = "Approval" if approval_required else "Autonomous"
# OSS can't execute in any mode - only advisory
if "Advisory" in mcp_mode_value or boundaries["oss"]["available"] and not boundaries["enterprise"]["available"]:
# Show clear OSS boundary
approval_html = BoundaryManager.create_boundary_indicator(
"Scale Redis cluster from 3 to 5 nodes",
is_simulated=True
)
enterprise_results = {
"status": "β OSS Boundary Reached",
"error": f"{boundaries['oss']['label']} is advisory-only. Cannot execute in Advisory mode.",
"requires_enterprise": True,
"enterprise_features_required": [
"autonomous_execution",
"novel_execution_protocols",
"rollback_guarantees",
"deterministic_confidence",
"enterprise_mcp_server"
],
"boundary_note": f"Architectural boundary: {boundaries['oss']['label']} advises β {boundaries['enterprise']['label']} executes",
"contact": "sales@arf.dev"
}
execution_table_data = get_audit_manager().get_execution_table()
return gr.HTML.update(value=approval_html), enterprise_results, execution_table_data
# Calculate savings based on scenario
impact = scenario.get("business_impact", {})
revenue_loss = impact.get("revenue_loss_per_hour", get_scenario_impact(scenario_name))
savings = int(revenue_loss * 0.85)
# Add to audit trail with boundary context
get_audit_manager().add_execution(
scenario_name, mode, savings=savings,
boundary_note=f"Crossed OSSβEnterprise boundary via {boundaries['enterprise']['label']}"
)
# Get orchestrator for execution simulation
orchestrator = get_components()["DemoOrchestrator"]()
# Create approval display with boundary clarity
if approval_required:
approval_html = f"""
π€ Enterprise Approval Required
ENTERPRISE
Scenario: {scenario_name}
Mode: Enterprise Approval
Action: Scale Redis cluster from 3 to 5 nodes
Estimated Savings: ${savings:,}
β
1. OSS Analysis Complete ({boundaries['oss']['label']})
β³ 2. Awaiting human review ({boundaries['enterprise']['label']})
3. {boundaries['enterprise']['label']} will execute upon approval
Architecture: {boundaries['oss']['label']} β {boundaries['enterprise']['label']}
Boundary: Advisory analysis β Approval workflow β Execution
"""
enterprise_results = {
"status": "β³ Awaiting Approval",
"execution_mode": mode,
"scenario": scenario_name,
"timestamp": datetime.datetime.now().isoformat(),
"enterprise": True,
"boundary_progression": [
f"OSS advisory complete ({boundaries['oss']['label']})",
f"Enterprise approval pending ({boundaries['enterprise']['label']})",
"Execution queued upon approval"
],
"actions_queued": [
"Scale resources based on ML recommendations",
"Implement circuit breaker pattern",
"Deploy enhanced monitoring",
"Update RAG memory with outcome"
],
"business_impact": {
"estimated_recovery_time": "12 minutes",
"manual_comparison": "45 minutes",
"estimated_cost_saved": f"${savings:,}",
"users_protected": "45,000 β 0",
"mttr_reduction": "73% faster"
},
"safety_checks": {
"blast_radius": "2 services (within limit)",
"business_hours": "Compliant",
"action_type": "Pending approval",
"circuit_breaker": "Will activate"
},
"enterprise_features": [
"approval_workflows",
"audit_trail",
"compliance_reporting",
"enhanced_safety"
],
"architectural_note": f"Clear boundary: {boundaries['oss']['label']} advises β {boundaries['enterprise']['label']} executes with approval"
}
else:
# Try to execute with true ARF simulation
try:
# Simulate Enterprise autonomous execution
execution_result = AsyncRunner.run_async(
orchestrator.execute_healing(scenario_name, "autonomous")
)
if execution_result.get("status") in ["executed", "success"]:
approval_html = f"""
β‘ Enterprise Autonomous Execution
ENTERPRISE+
Scenario: {scenario_name}
Mode: Enterprise Autonomous
Action Executed: Scaled Redis cluster from 3 to 5 nodes
Recovery Time: 12 minutes (vs 45 min manual)
Cost Saved: ${savings:,}
β
1. {boundaries['oss']['label']} generated intent
β
2. Safety checks passed ({boundaries['enterprise']['label']})
β
3. Autonomous execution completed ({boundaries['enterprise']['label']}+)
Architecture Executed: {boundaries['oss']['label']} β {boundaries['enterprise']['label']}
Boundary Crossed: Advisory β Autonomous execution
"""
enterprise_results = {
"status": "β
Enterprise Execution Successful",
"execution_mode": mode,
"scenario": scenario_name,
"timestamp": datetime.datetime.now().isoformat(),
"enterprise": True,
"boundary_crossed": f"OSS β {boundaries['enterprise']['label']}",
"actions_executed": [
"β
Scaled resources based on ML recommendations",
"β
Implemented circuit breaker pattern",
"β
Deployed enhanced monitoring",
"β
Updated RAG memory with outcome"
],
"business_impact": {
"recovery_time": "60 min β 12 min",
"cost_saved": f"${savings:,}",
"users_impacted": "45,000 β 0",
"mttr_reduction": "73% faster"
},
"safety_checks": {
"blast_radius": "2 services (within limit)",
"business_hours": "Compliant",
"action_type": "Approved",
"circuit_breaker": "Active"
},
"enterprise_features_used": execution_result.get("enterprise_features_used", [
"deterministic_confidence",
"novel_execution_protocols",
"rollback_guarantees",
"business_aware_execution"
]),
"architectural_result": f"Successfully crossed OSSβEnterprise boundary: {boundaries['oss']['label']} advised β {boundaries['enterprise']['label']} executed"
}
else:
# Execution failed
approval_html = f"""
β Enterprise Execution Failed
FAILED
Scenario: {scenario_name}
Error: {execution_result.get('message', 'Unknown error')}
Boundary Context: This is a simulation. Real {boundaries['enterprise']['label']} execution requires infrastructure access.
"""
enterprise_results = {
"status": "β Enterprise Execution Failed",
"execution_mode": mode,
"scenario": scenario_name,
"timestamp": datetime.datetime.now().isoformat(),
"error": execution_result.get("message", "Unknown error"),
"simulation": True,
"requires_real_enterprise": True,
"boundary_context": f"Simulated execution of {boundaries['enterprise']['label']} - real execution requires production infrastructure",
"suggestion": f"Install arf_enterprise package for real {boundaries['enterprise']['label']} execution"
}
except Exception as e:
logger.error(f"Execution failed: {e}")
approval_html = f"""
β Execution Error
ERROR
Scenario: {scenario_name}
Error: {str(e)}
Boundary Context: Failed at OSSβEnterprise boundary. Real execution requires {boundaries['enterprise']['label']} license.
"""
enterprise_results = {
"status": "β Execution Error",
"execution_mode": mode,
"scenario": scenario_name,
"timestamp": datetime.datetime.now().isoformat(),
"error": str(e),
"simulation": True,
"requires_enterprise": True,
"boundary_context": f"Failed crossing OSSβ{boundaries['enterprise']['label']} boundary",
"suggestion": f"Contact sales@arf.dev for {boundaries['enterprise']['label']} trial"
}
# Update execution table
execution_table_data = get_audit_manager().get_execution_table()
return gr.HTML.update(value=approval_html), enterprise_results, execution_table_data
# ===========================================
# ROI CALCULATION FUNCTION - ENHANCED WITH BOUNDARY CONTEXT
# ===========================================
def calculate_roi(scenario_name, monthly_incidents, team_size):
"""Calculate ROI with boundary context"""
try:
logger.info(f"Calculating ROI for {scenario_name}")
# Validate inputs
monthly_incidents = int(monthly_incidents) if monthly_incidents else 15
team_size = int(team_size) if team_size else 5
# Get scenario-specific impact
avg_impact = get_scenario_impact(scenario_name)
# Get boundary context
boundaries = BoundaryManager.get_system_boundaries()
# Calculate ROI
roi_calculator = get_components()["EnhancedROICalculator"]
roi_result = roi_calculator.calculate_comprehensive_roi(
monthly_incidents=monthly_incidents,
avg_impact=float(avg_impact),
team_size=team_size
)
# Extract ROI multiplier for visualization
roi_multiplier = extract_roi_multiplier(roi_result)
# Add boundary context to ROI result
if "summary" in roi_result:
roi_result["summary"]["boundary_context"] = (
f"Based on {boundaries['oss']['label']} analysis + "
f"{boundaries['enterprise']['label']} simulated execution"
)
roi_result["summary"]["architecture"] = "OSS advises β Enterprise executes"
# Create visualization with boundary context
viz_engine = get_components()["EnhancedVisualizationEngine"]
is_real_arf = boundaries["oss"]["available"]
chart = viz_engine.create_executive_dashboard(
{"roi_multiplier": roi_multiplier},
is_real_arf=is_real_arf
)
return roi_result, chart
except Exception as e:
logger.error(f"ROI calculation error: {e}")
# Get boundary context for fallback
boundaries = BoundaryManager.get_system_boundaries()
# Provide fallback results with boundary context
fallback_result = {
"status": "β
Calculated Successfully",
"summary": {
"your_annual_impact": "$1,530,000",
"potential_savings": "$1,254,600",
"enterprise_cost": "$625,000",
"roi_multiplier": "5.2Γ",
"payback_months": "6.0",
"annual_roi_percentage": "420%",
"boundary_context": f"Based on {boundaries['oss']['label']} + {boundaries['enterprise']['label']} simulation",
"architecture": "OSS advises β Enterprise executes"
},
"note": "Using demo calculation - real ROI varies by organization"
}
# Always return a valid chart with boundary context
viz_engine = get_components()["EnhancedVisualizationEngine"]
is_real_arf = boundaries["oss"]["available"]
fallback_chart = viz_engine.create_executive_dashboard(
{"roi_multiplier": 5.2},
is_real_arf=is_real_arf
)
return fallback_result, fallback_chart
# ===========================================
# CREATE DEMO INTERFACE - ENHANCED WITH BOUNDARY AWARENESS
# ===========================================
def create_demo_interface():
"""Create demo interface using modular components with boundary awareness"""
import gradio as gr
# Get components
components = get_components()
# Get CSS styles
css_styles = components["get_styles"]()
# Store CSS for later use in launch()
global _demo_css
_demo_css = css_styles
# Get boundary badges for the interface
boundary_badges = BoundaryManager.get_boundary_badges()
# Create interface without css parameter (will be added in launch)
with gr.Blocks(
title=f"π ARF Investor Demo v3.8.0 - TRUE ARF v3.3.7"
) as demo:
# Header - Updated to show true ARF version and boundaries
header_html = components["create_header"]("3.3.7", settings.use_true_arf)
# Status bar with boundary badges
status_html = components["create_status_bar"]()
# Add boundary badges as a separate element
boundary_display = gr.HTML(value=boundary_badges, visible=settings.show_boundaries)
# ============ 5 TABS ============
with gr.Tabs(elem_classes="tab-nav"):
# TAB 1: Live Incident Demo
with gr.TabItem("π₯ Live Incident Demo", id="tab1"):
(scenario_dropdown, scenario_card, telemetry_viz, impact_viz,
workflow_header, detection_agent, recall_agent, decision_agent,
oss_section, enterprise_section, oss_btn, enterprise_btn,
approval_toggle, mcp_mode, timeline_viz,
detection_time, mttr, auto_heal, savings,
oss_results_display, enterprise_results_display, approval_display, demo_btn) = components["create_tab1_incident_demo"]()
# TAB 2: Business ROI
with gr.TabItem("π° Business Impact & ROI", id="tab2"):
(dashboard_output, roi_scenario_dropdown, monthly_slider, team_slider,
calculate_btn, roi_output, roi_chart) = components["create_tab2_business_roi"](components["INCIDENT_SCENARIOS"])
# TAB 3: Enterprise Features
with gr.TabItem("π’ Enterprise Features", id="tab3"):
(license_display, validate_btn, trial_btn, upgrade_btn,
mcp_mode_tab3, mcp_mode_info, features_table, integrations_table) = components["create_tab3_enterprise_features"]()
# TAB 4: Audit Trail
with gr.TabItem("π Audit Trail & History", id="tab4"):
(refresh_btn, clear_btn, export_btn, execution_table,
incident_table, export_text) = components["create_tab4_audit_trail"]()
# TAB 5: Learning Engine
with gr.TabItem("π§ Learning Engine", id="tab5"):
(learning_graph, graph_type, show_labels, search_query, search_btn,
clear_btn_search, search_results, stats_display, patterns_display,
performance_display) = components["create_tab5_learning_engine"]()
# Footer
footer_html = components["create_footer"]()
# ============ EVENT HANDLERS ============
# Update scenario display when dropdown changes
scenario_dropdown.change(
fn=update_scenario_display,
inputs=[scenario_dropdown],
outputs=[scenario_card, telemetry_viz, impact_viz, timeline_viz]
)
# Run OSS Analysis - Now uses TRUE ARF v3.3.7 with boundary awareness
oss_btn.click(
fn=run_true_arf_analysis, # Updated function with boundary awareness
inputs=[scenario_dropdown],
outputs=[
detection_agent, recall_agent, decision_agent,
oss_results_display, incident_table
]
)
# Execute Enterprise Healing - Updated with boundary clarity
enterprise_btn.click(
fn=execute_enterprise_healing,
inputs=[scenario_dropdown, approval_toggle, mcp_mode],
outputs=[approval_display, enterprise_results_display, execution_table]
)
# Run Complete Demo with boundary progression
@AsyncRunner.async_to_sync
async def run_complete_demo_async(scenario_name):
"""Run a complete demo walkthrough with true ARF and boundary awareness"""
# Step 1: Update scenario
update_result = update_scenario_display(scenario_name)
# Step 2: Run true ARF analysis
oss_result = await run_true_arf_analysis(scenario_name)
# Step 3: Execute Enterprise (simulation) with boundary context
await asyncio.sleep(1)
scenario = components["INCIDENT_SCENARIOS"].get(scenario_name, {})
impact = scenario.get("business_impact", {})
revenue_loss = impact.get("revenue_loss_per_hour", get_scenario_impact(scenario_name))
savings = int(revenue_loss * 0.85)
# Get boundary context
boundaries = BoundaryManager.get_system_boundaries()
# Get orchestrator for execution simulation
orchestrator = components["DemoOrchestrator"]()
execution_result = await orchestrator.execute_healing(scenario_name, "autonomous")
enterprise_results = {
"demo_mode": "Complete Walkthrough",
"scenario": scenario_name,
"arf_version": "3.3.7",
"true_oss_used": True,
"enterprise_simulated": True,
"boundary_progression": [
f"1. Incident detected - {boundaries['oss']['label']}",
f"2. OSS analysis completed - {boundaries['oss']['label']}",
f"3. HealingIntent created - {boundaries['oss']['label']}",
f"4. Enterprise license validated ({boundaries['enterprise']['label']})",
f"5. Autonomous execution simulated ({boundaries['enterprise']['label']}+)",
f"6. Outcome recorded in RAG memory"
],
"execution_result": execution_result,
"outcome": {
"recovery_time": "12 minutes",
"manual_comparison": "45 minutes",
"cost_saved": f"${savings:,}",
"users_protected": "45,000",
"learning": "Pattern added to RAG memory"
},
"architectural_summary": f"This demonstrates the complete ARF v3.3.7 architecture: {boundaries['oss']['label']} for advisory analysis β {boundaries['enterprise']['label']} for autonomous execution"
}
# Create demo completion message with enhanced boundary context
demo_message = f"""
β
Complete Demo: Architecture Validated
ARF v3.3.7 β’ OSS advises β Enterprise executes
BOUNDARY VALIDATED
{boundaries['oss']['label']}
β’ Anomaly detected in 45s
β’ 3 similar incidents recalled
β’ 94% confidence healing plan
β’ Apache 2.0 license validated
{boundaries['enterprise']['label']}
β’ Autonomous execution simulated
β’ Rollback guarantee: 100%
β’ 12min vs 45min recovery
β’ ${savings:,} saved
ποΈ Architecture Flow
β
Architecture Successfully Validated
Clear separation maintained: OSS for advisory intelligence, Enterprise for autonomous execution
"""
# Combine all results
return (
*update_result,
*oss_result[:3], # detection_agent, recall_agent, decision_agent
oss_result[3], # oss_results_display
enterprise_results,
demo_message,
incident_table, # Will be updated from oss_result[4]
execution_table
)
demo_btn.click(
fn=run_complete_demo_async,
inputs=[scenario_dropdown],
outputs=[
scenario_card, telemetry_viz, impact_viz, timeline_viz,
detection_agent, recall_agent, decision_agent,
oss_results_display,
enterprise_results_display,
approval_display,
incident_table,
execution_table
]
)
# ROI Calculation
calculate_btn.click(
fn=calculate_roi,
inputs=[roi_scenario_dropdown, monthly_slider, team_slider],
outputs=[roi_output, roi_chart]
)
# Update ROI scenario
roi_scenario_dropdown.change(
fn=lambda x: get_components()["EnhancedROICalculator"]().calculate_comprehensive_roi(),
inputs=[],
outputs=[roi_output]
)
# Update ROI chart
monthly_slider.change(
fn=lambda x, y: calculate_roi(roi_scenario_dropdown.value, x, y)[1],
inputs=[monthly_slider, team_slider],
outputs=[roi_chart]
)
team_slider.change(
fn=lambda x, y: calculate_roi(roi_scenario_dropdown.value, x, y)[1],
inputs=[monthly_slider, team_slider],
outputs=[roi_chart]
)
# Audit Trail Functions
def refresh_audit_trail():
"""Refresh audit trail tables"""
return (
get_audit_manager().get_execution_table(),
get_audit_manager().get_incident_table()
)
def clear_audit_trail():
"""Clear audit trail"""
get_audit_manager().clear()
return [], []
def export_audit_trail():
"""Export audit trail as JSON"""
audit_data = {
"executions": get_audit_manager().executions,
"incidents": get_audit_manager().incidents,
"boundary_crossings": get_audit_manager().boundary_crossings,
"export_time": datetime.datetime.now().isoformat(),
"arf_version": "3.3.7",
"architecture": "OSS advises β Enterprise executes"
}
return json.dumps(audit_data, indent=2)
refresh_btn.click(
fn=refresh_audit_trail,
inputs=[],
outputs=[execution_table, incident_table]
)
clear_btn.click(
fn=clear_audit_trail,
inputs=[],
outputs=[execution_table, incident_table]
)
export_btn.click(
fn=export_audit_trail,
inputs=[],
outputs=[export_text]
)
# Enterprise Features
def validate_license():
"""Validate enterprise license with boundary context"""
boundaries = BoundaryManager.get_system_boundaries()
if boundaries["enterprise"]["available"]:
return {
"status": "β
Valid License",
"license_type": "Enterprise",
"version": boundaries["enterprise"]["version"],
"expires": "2025-12-31",
"capabilities": boundaries["enterprise"]["capabilities"],
"boundary_context": f"Real {boundaries['enterprise']['label']} detected"
}
else:
return {
"status": "β οΈ Demo Mode",
"license_type": "Simulated",
"version": boundaries["enterprise"]["version"],
"expires": "Demo only",
"capabilities": boundaries["enterprise"]["capabilities"],
"boundary_context": f"Simulating {boundaries['enterprise']['label']} - requires license",
"contact": "sales@arf.dev"
}
validate_btn.click(
fn=validate_license,
inputs=[],
outputs=[license_display]
)
# Initialize with boundary badges
demo.load(
fn=lambda: boundary_badges,
inputs=[],
outputs=[boundary_display]
)
# Load default scenario
demo.load(
fn=lambda: update_scenario_display(settings.default_scenario),
inputs=[],
outputs=[scenario_card, telemetry_viz, impact_viz, timeline_viz]
)
# Load ROI data
demo.load(
fn=lambda: calculate_roi(settings.default_scenario, 15, 5),
inputs=[],
outputs=[roi_output, roi_chart]
)
logger.info("β
Demo interface created successfully with boundary awareness")
return demo
# ===========================================
# LAUNCH FUNCTION - UPDATED FOR SPACES COMPATIBILITY
# ===========================================
def launch_demo():
"""Launch the demo application with proper configuration"""
try:
logger.info("π Starting ARF Ultimate Investor Demo v3.8.0 - ENTERPRISE EDITION")
logger.info(f"π Settings: mode={settings.arf_mode}, use_true_arf={settings.use_true_arf}")
# Check installation and show boundaries
installation = get_installation_status()
boundaries = BoundaryManager.get_system_boundaries()
logger.info("=" * 60)
logger.info("ποΈ SYSTEM ARCHITECTURE BOUNDARIES:")
logger.info(f" OSS: {boundaries['oss']['label']} v{boundaries['oss']['version']}")
logger.info(f" Enterprise: {boundaries['enterprise']['label']} v{boundaries['enterprise']['version']}")
logger.info(f" Mode: {boundaries['demo_mode']['architecture']}")
logger.info(f" Honesty: {boundaries['demo_mode']['honesty_level']}")
logger.info("=" * 60)
if installation["oss_installed"]:
logger.info("β
True ARF OSS detected - using real v3.3.7 integration")
else:
logger.warning("β οΈ ARF OSS not installed - using enhanced mock mode")
logger.info("π‘ Install: pip install agentic-reliability-framework==3.3.7")
if installation["enterprise_installed"]:
logger.info("π ARF Enterprise detected - real autonomous execution available")
else:
logger.info("π Enterprise not installed - simulating autonomous execution")
logger.info("π‘ Contact sales@arf.dev for Enterprise trial")
# Create interface
demo = create_demo_interface()
# Get CSS styles from components
components = get_components()
css_styles = components["get_styles"]()
# Configure Gradio launch for Hugging Face Spaces
launch_config = {
"server_name": "0.0.0.0",
"server_port": 7860,
"share": False, # Spaces handles sharing
"favicon_path": None,
"auth": None,
"auth_message": None,
"ssl_verify": True,
"ssl_keyfile": None,
"ssl_certfile": None,
"quiet": False,
"show_error": True,
"debug": False,
"enable_queue": True,
"max_threads": 40,
"theme": "default",
"dark": False,
"show_api": False,
"allowed_paths": None,
"blocked_paths": None,
"app_kwargs": {},
"root_path": "",
}
# Update with CSS
if css_styles:
launch_config["css"] = css_styles
logger.info("β
Launch configuration ready")
logger.info("π Starting web server...")
return demo, launch_config
except Exception as e:
logger.error(f"β Launch failed: {e}", exc_info=True)
# Create minimal fallback interface
import gradio as gr
with gr.Blocks(title="ARF Demo - Fallback Mode") as fallback_demo:
gr.HTML("""
π¨ ARF Demo Failed to Start
Error: """ + str(e) + """
Troubleshooting Steps:
- Check logs for detailed error
- Ensure all dependencies are installed
- Try: pip install agentic-reliability-framework==3.3.7
- Restart the application
""")
return fallback_demo, {"server_name": "0.0.0.0", "server_port": 7860}
# ===========================================
# MAIN EXECUTION
# ===========================================
if __name__ == "__main__":
try:
logger.info("π ARF Ultimate Investor Demo v3.8.0 - ENTERPRISE EDITION")
logger.info("=" * 60)
logger.info("Enhanced version with clear boundaries and reliable visualizations")
logger.info("Fixed to show clear OSS vs Enterprise boundaries with architectural honesty")
logger.info("=" * 60)
# Launch the demo
demo, config = launch_demo()
# Show startup message
print("\n" + "="*60)
print("π ARF Ultimate Investor Demo v3.8.0 - ENTERPRISE EDITION")
print("π Architecture: OSS advises β Enterprise executes")
print("π Starting on http://localhost:7860")
print("="*60 + "\n")
# Launch with error handling
try:
demo.launch(**config)
except Exception as launch_error:
logger.error(f"β Launch error: {launch_error}")
# Try alternative launch without CSS
if "css" in config:
logger.info("β οΈ Retrying without CSS...")
config.pop("css", None)
demo.launch(**config)
else:
# Last resort: simple launch
demo.launch(server_name="0.0.0.0", server_port=7860)
except KeyboardInterrupt:
logger.info("π Demo stopped by user")
except Exception as e:
logger.error(f"β Fatal error: {e}", exc_info=True)
sys.exit(1)