File size: 10,989 Bytes
21e5d4d b1fa2d5 21e5d4d b1fa2d5 21e5d4d b1fa2d5 f627f89 b1fa2d5 f627f89 b1fa2d5 f627f89 b1fa2d5 f627f89 b1fa2d5 f627f89 b1fa2d5 | 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 | """
Configuration management for ARF Demo
Updated with REAL ARF installation detection - FIXED ENUM ERROR
"""
from typing import Optional, Dict, Any, List
from enum import Enum
import os
import logging
logger = logging.getLogger(__name__)
# Try to import from pydantic-settings, fallback to pydantic
try:
from pydantic_settings import BaseSettings
from pydantic import Field, validator
PYDANTIC_V2 = True
logger.info("Using pydantic-settings for BaseSettings")
except ImportError:
try:
from pydantic import BaseSettings, Field, validator
PYDANTIC_V2 = False
logger.info("Using pydantic.BaseSettings (older version)")
except ImportError as e:
logger.error(f"Failed to import pydantic: {e}")
# Create minimal fallback
class BaseSettings:
def __init__(self, **kwargs):
for k, v in kwargs.items():
setattr(self, k, v)
class Field:
@staticmethod
def default(value):
return value
def validator(*args, **kwargs):
def decorator(func):
return func
return decorator
PYDANTIC_V2 = False
class ARFMode(str, Enum):
"""ARF operation modes"""
DEMO = "demo"
OSS = "oss"
ENTERPRISE = "enterprise"
class SafetyMode(str, Enum):
"""Safety modes for execution"""
ADVISORY = "advisory"
APPROVAL = "approval"
AUTONOMOUS = "autonomous"
class InstallationStatus(str, Enum):
"""ARF package installation status"""
NOT_INSTALLED = "not_installed"
OSS_ONLY = "oss_only"
ENTERPRISE = "enterprise"
BOTH = "both"
class Settings(BaseSettings):
"""
Application settings with environment variable support
"""
# ===== System Mode =====
arf_mode: str = Field(
default="demo", # Changed from ARFMode to string to avoid enum issues
description="ARF operation mode: demo, oss, enterprise"
)
use_true_arf: bool = Field(
default=True,
description="Use true ARF integration when available"
)
# ===== Installation Status (Auto-detected) =====
arf_oss_installed: bool = Field(
default=False,
description="ARF OSS package installed"
)
arf_enterprise_installed: bool = Field(
default=False,
description="ARF Enterprise package installed"
)
arf_oss_version: Optional[str] = Field(
default=None,
description="ARF OSS version if installed"
)
arf_enterprise_version: Optional[str] = Field(
default=None,
description="ARF Enterprise version if installed"
)
# ===== ARF Configuration =====
arf_api_key: Optional[str] = Field(
default=None,
description="ARF API key for real integration"
)
arf_base_url: str = Field(
default="https://api.arf.dev",
description="ARF API base URL"
)
# ===== Business Configuration =====
engineer_hourly_rate: float = Field(
default=150.0,
description="Engineer hourly rate in USD"
)
engineer_annual_cost: float = Field(
default=125000.0,
description="Engineer annual cost in USD"
)
default_savings_rate: float = Field(
default=0.82,
description="Default savings rate with ARF"
)
# ===== UI Configuration =====
auto_refresh_seconds: int = Field(
default=30,
description="Auto-refresh interval in seconds"
)
max_history_items: int = Field(
default=100,
description="Maximum history items to display"
)
# ===== Demo Configuration =====
default_scenario: str = Field(
default="Cache Miss Storm",
description="Default incident scenario"
)
scenario_config_path: str = Field(
default="config/scenarios",
description="Path to scenario configuration files"
)
# ===== Safety Configuration =====
default_safety_mode: str = Field(
default="advisory", # Changed from SafetyMode to string
description="Default safety mode: advisory, approval, autonomous"
)
require_approval: bool = Field(
default=True,
description="Require human approval for execution"
)
# ===== Validation =====
@validator("arf_api_key")
def validate_api_key(cls, v: Optional[str], values: Dict[str, Any]) -> Optional[str]:
if values.get("arf_mode") == "enterprise" and not v:
raise ValueError("ARF API key required for Enterprise mode")
return v
@validator("use_true_arf")
def validate_true_arf(cls, v: bool, values: Dict[str, Any]) -> bool:
if v and not values.get("arf_oss_installed"):
logger.warning("True ARF requested but OSS package not installed. Using mock mode.")
return False
return v
# ===== Installation Detection =====
@classmethod
def detect_installation(cls):
"""Detect ARF package installation"""
results = {
"oss_installed": False,
"enterprise_installed": False,
"oss_version": None,
"enterprise_version": None
}
# 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')
logger.info(f"β
ARF OSS v{results['oss_version']} detected")
except ImportError:
logger.info("β οΈ ARF OSS not installed - will use mock mode")
# Check Enterprise package
try:
import arf_enterprise
results["enterprise_installed"] = True
results["enterprise_version"] = getattr(arf_enterprise, '__version__', '1.0.2')
logger.info(f"β
ARF Enterprise v{results['enterprise_version']} detected")
except ImportError:
logger.info("β οΈ ARF Enterprise not installed - will use simulation")
return results
def get_installation_status(self) -> InstallationStatus:
"""Get current installation status"""
if self.arf_oss_installed and self.arf_enterprise_installed:
return InstallationStatus.BOTH
elif self.arf_enterprise_installed:
return InstallationStatus.ENTERPRISE
elif self.arf_oss_installed:
return InstallationStatus.OSS_ONLY
else:
return InstallationStatus.NOT_INSTALLED
def get_installation_badges(self) -> Dict[str, Any]:
"""Get badge information for UI display"""
if self.arf_oss_installed:
oss_badge = {
"text": f"β
ARF OSS v{self.arf_oss_version}",
"color": "#10b981",
"icon": "β
"
}
else:
oss_badge = {
"text": "β οΈ Mock ARF",
"color": "#f59e0b",
"icon": "β οΈ"
}
if self.arf_enterprise_installed:
enterprise_badge = {
"text": f"π Enterprise v{self.arf_enterprise_version}",
"color": "#8b5cf6",
"icon": "π"
}
else:
enterprise_badge = {
"text": "π Enterprise Required",
"color": "#64748b",
"icon": "π"
}
return {
"oss": oss_badge,
"enterprise": enterprise_badge
}
def get_installation_recommendations(self) -> List[str]:
"""Get installation recommendations"""
recommendations = []
if not self.arf_oss_installed:
recommendations.append(
"Install real ARF OSS: `pip install agentic-reliability-framework==3.3.7`"
)
if not self.arf_enterprise_installed:
recommendations.append(
"Install ARF Enterprise: `pip install agentic-reliability-enterprise` (requires license)"
)
return recommendations
class Config:
env_file = ".env"
env_file_encoding = "utf-8"
case_sensitive = False
# Global settings instance with installation detection
try:
# First detect installation
installation_info = Settings.detect_installation()
# Create settings with installation info
settings = Settings(
arf_oss_installed=installation_info["oss_installed"],
arf_enterprise_installed=installation_info["enterprise_installed"],
arf_oss_version=installation_info["oss_version"],
arf_enterprise_version=installation_info["enterprise_version"],
)
# Log installation status
status = settings.get_installation_status()
logger.info(f"ARF Installation Status: {status.value}")
if status == InstallationStatus.NOT_INSTALLED:
logger.warning("No ARF packages installed. Demo will use mock mode.")
logger.warning("For real ARF experience, install: pip install agentic-reliability-framework==3.3.7")
except Exception as e:
logger.warning(f"Failed to load settings: {e}, using defaults")
settings = Settings(
arf_mode="demo",
use_true_arf=False,
arf_oss_installed=False,
arf_enterprise_installed=False,
engineer_hourly_rate=150.0,
engineer_annual_cost=125000.0,
default_savings_rate=0.82,
auto_refresh_seconds=30,
max_history_items=100,
default_scenario="Cache Miss Storm",
scenario_config_path="config/scenarios",
default_safety_mode="advisory",
require_approval=True
)
def get_settings() -> Settings:
"""Get settings instance (singleton pattern)"""
return settings
def print_installation_status():
"""Print installation status to console - SAFE VERSION"""
try:
s = get_settings()
print("=" * 70)
print("π ARF Ultimate Investor Demo - Installation Status")
print("=" * 70)
print(f"π¦ ARF OSS: {'β
v' + s.arf_oss_version if s.arf_oss_installed else 'β οΈ Not installed'}")
print(f"π’ Enterprise: {'β
v' + s.arf_enterprise_version if s.arf_enterprise_installed else 'β οΈ Not installed'}")
# Safe string access
print(f"π― Mode: {s.arf_mode.upper()}")
print(f"π€ Using True ARF: {'β
Yes' if s.use_true_arf else 'β οΈ Mock mode'}")
recommendations = s.get_installation_recommendations()
if recommendations:
print("\nπ‘ Recommendations:")
for rec in recommendations:
print(f" β’ {rec}")
print("=" * 70)
except Exception as e:
print(f"β οΈ Could not print installation status: {e}") |