petter2025 commited on
Commit
6725577
·
verified ·
1 Parent(s): c06d738

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -7
app.py CHANGED
@@ -9,6 +9,12 @@ import numpy as np
9
  import pandas as pd
10
  from datetime import datetime
11
 
 
 
 
 
 
 
12
  # ARF components
13
  from agentic_reliability_framework.runtime.engine import EnhancedReliabilityEngine
14
  from agentic_reliability_framework.core.models.event import ReliabilityEvent
@@ -40,12 +46,6 @@ try:
40
  except ImportError as e:
41
  logger.warning(f"Infrastructure modules not fully available: {e}. The Infrastructure tab will be disabled.")
42
 
43
- # ----------------------------------------------------------------------
44
- # Logging setup
45
- # ----------------------------------------------------------------------
46
- logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
47
- logger = logging.getLogger(__name__)
48
-
49
  # ----------------------------------------------------------------------
50
  # ARF infrastructure engine (optional)
51
  # ----------------------------------------------------------------------
@@ -492,7 +492,23 @@ with gr.Blocks(title="ARF v4 – AI Reliability Lab", theme="soft") as demo:
492
  with gr.TabItem("Enterprise"):
493
  gr.Markdown("""
494
  ## 🚀 ARF Enterprise – Governed Execution for Autonomous Infrastructure
495
- ...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
496
  """)
497
 
498
  # Feedback row
 
9
  import pandas as pd
10
  from datetime import datetime
11
 
12
+ # ----------------------------------------------------------------------
13
+ # Logging setup (MUST be early so logger is defined before any imports that use it)
14
+ # ----------------------------------------------------------------------
15
+ logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
16
+ logger = logging.getLogger(__name__)
17
+
18
  # ARF components
19
  from agentic_reliability_framework.runtime.engine import EnhancedReliabilityEngine
20
  from agentic_reliability_framework.core.models.event import ReliabilityEvent
 
46
  except ImportError as e:
47
  logger.warning(f"Infrastructure modules not fully available: {e}. The Infrastructure tab will be disabled.")
48
 
 
 
 
 
 
 
49
  # ----------------------------------------------------------------------
50
  # ARF infrastructure engine (optional)
51
  # ----------------------------------------------------------------------
 
492
  with gr.TabItem("Enterprise"):
493
  gr.Markdown("""
494
  ## 🚀 ARF Enterprise – Governed Execution for Autonomous Infrastructure
495
+
496
+ Take ARF to production with enterprise‑grade safety, compliance, and learning.
497
+
498
+ ### Key Enterprise Features:
499
+ - **Autonomous Execution** – Deterministic, policy‑controlled healing actions.
500
+ - **Audit Trails & Compliance** – Full traceability for SOC2, HIPAA, GDPR.
501
+ - **Learning Loops** – Models improve over time with your data.
502
+ - **Multi‑Tenant Control** – Role‑based access and isolation.
503
+ - **Cloud Integrations** – Azure, AWS, GCP native clients.
504
+ - **24/7 Support & SLAs** – Enterprise‑grade reliability.
505
+
506
+ ### Get Started
507
+ - 📅 [Book a Demo](https://calendly.com/petter2025us/30min)
508
+ - 📧 [Contact Sales](mailto:petter2025us@outlook.com)
509
+ - 📄 [Download Datasheet](#) (coming soon)
510
+
511
+ *Already using ARF OSS? Upgrade seamlessly – same core, governed execution.*
512
  """)
513
 
514
  # Feedback row