Update demo/guidance.py
Browse files- demo/guidance.py +54 -0
demo/guidance.py
CHANGED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
User journey guidance for the demo
|
| 3 |
+
"""
|
| 4 |
+
|
| 5 |
+
USER_JOURNEY_STEPS = [
|
| 6 |
+
{
|
| 7 |
+
"step": 1,
|
| 8 |
+
"title": "π₯ Experience OSS Analysis",
|
| 9 |
+
"description": "Select an incident and run OSS analysis to see ARF's recommendations",
|
| 10 |
+
"tab": "Live Incident Demo",
|
| 11 |
+
"action": "Click 'Run OSS Analysis'",
|
| 12 |
+
"learning": "See how ARF analyzes incidents and creates HealingIntents"
|
| 13 |
+
},
|
| 14 |
+
{
|
| 15 |
+
"step": 2,
|
| 16 |
+
"title": "π° Calculate Your ROI",
|
| 17 |
+
"description": "Adjust the sliders to see potential savings for your organization",
|
| 18 |
+
"tab": "Business Impact & ROI",
|
| 19 |
+
"action": "Use sliders then click 'Calculate My ROI'",
|
| 20 |
+
"learning": "Understand the business case for ARF Enterprise"
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"step": 3,
|
| 24 |
+
"title": "π Execute Enterprise Healing",
|
| 25 |
+
"description": "Experience autonomous healing with approval workflows",
|
| 26 |
+
"tab": "Live Incident Demo",
|
| 27 |
+
"action": "Click 'Execute Enterprise Healing'",
|
| 28 |
+
"learning": "See the difference between OSS advisory and Enterprise execution"
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
"step": 4,
|
| 32 |
+
"title": "π Explore Audit Trail",
|
| 33 |
+
"description": "View comprehensive logging of all actions taken",
|
| 34 |
+
"tab": "Audit Trail & History",
|
| 35 |
+
"action": "Check execution and incident history",
|
| 36 |
+
"learning": "See enterprise-grade compliance and audit capabilities"
|
| 37 |
+
},
|
| 38 |
+
{
|
| 39 |
+
"step": 5,
|
| 40 |
+
"title": "π§ Discover Learning Engine",
|
| 41 |
+
"description": "Explore pattern detection and similarity search",
|
| 42 |
+
"tab": "Learning Engine",
|
| 43 |
+
"action": "Search for similar incidents",
|
| 44 |
+
"learning": "See how ARF learns from past incidents"
|
| 45 |
+
}
|
| 46 |
+
]
|
| 47 |
+
|
| 48 |
+
DEMO_TIPS = [
|
| 49 |
+
"π‘ **Pro Tip**: Use the 'Quick Demo' button for a complete guided experience",
|
| 50 |
+
"π‘ **Pro Tip**: Toggle the approval checkbox to see different execution modes",
|
| 51 |
+
"π‘ **Pro Tip**: Export the audit trail to see comprehensive JSON data",
|
| 52 |
+
"π‘ **Pro Tip**: Try different incident scenarios to see varied responses",
|
| 53 |
+
"π‘ **Pro Tip**: Use the ROI calculator with your organization's numbers"
|
| 54 |
+
]
|