Update app.py
Browse files
app.py
CHANGED
|
@@ -1,7 +1,6 @@
|
|
| 1 |
"""
|
| 2 |
π ARF ULTIMATE INVESTOR DEMO
|
| 3 |
Showing OSS vs Enterprise capabilities with maximum WOW factor
|
| 4 |
-
|
| 5 |
Features demonstrated:
|
| 6 |
1. Live business impact dashboard
|
| 7 |
2. RAG graph memory visualization
|
|
@@ -540,7 +539,7 @@ def create_ultimate_demo():
|
|
| 540 |
live_dashboard = LiveDashboard()
|
| 541 |
enterprise_servers = {} # Store mock enterprise servers
|
| 542 |
|
| 543 |
-
with gr.Blocks(title="π ARF Ultimate Investor Demo"
|
| 544 |
gr.Markdown("""
|
| 545 |
# π Agentic Reliability Framework - Ultimate Investor Demo
|
| 546 |
### From Cost Center to Profit Engine: 5.2Γ ROI with Autonomous Reliability
|
|
@@ -575,7 +574,6 @@ def create_ultimate_demo():
|
|
| 575 |
headers=["Time", "Service", "Impact", "Status", "Value Protected"],
|
| 576 |
value=[],
|
| 577 |
interactive=False,
|
| 578 |
-
height=200,
|
| 579 |
)
|
| 580 |
|
| 581 |
# Top customers protected
|
|
@@ -875,7 +873,6 @@ def create_ultimate_demo():
|
|
| 875 |
label="π Live Audit Trail",
|
| 876 |
headers=["Time", "Action", "Component", "User", "Status"],
|
| 877 |
value=[],
|
| 878 |
-
height=300,
|
| 879 |
)
|
| 880 |
|
| 881 |
with gr.Column(scale=2):
|
|
@@ -1086,7 +1083,8 @@ def main():
|
|
| 1086 |
server_name="0.0.0.0",
|
| 1087 |
server_port=7860,
|
| 1088 |
share=False,
|
| 1089 |
-
show_error=True
|
|
|
|
| 1090 |
)
|
| 1091 |
|
| 1092 |
if __name__ == "__main__":
|
|
|
|
| 1 |
"""
|
| 2 |
π ARF ULTIMATE INVESTOR DEMO
|
| 3 |
Showing OSS vs Enterprise capabilities with maximum WOW factor
|
|
|
|
| 4 |
Features demonstrated:
|
| 5 |
1. Live business impact dashboard
|
| 6 |
2. RAG graph memory visualization
|
|
|
|
| 539 |
live_dashboard = LiveDashboard()
|
| 540 |
enterprise_servers = {} # Store mock enterprise servers
|
| 541 |
|
| 542 |
+
with gr.Blocks(title="π ARF Ultimate Investor Demo") as demo:
|
| 543 |
gr.Markdown("""
|
| 544 |
# π Agentic Reliability Framework - Ultimate Investor Demo
|
| 545 |
### From Cost Center to Profit Engine: 5.2Γ ROI with Autonomous Reliability
|
|
|
|
| 574 |
headers=["Time", "Service", "Impact", "Status", "Value Protected"],
|
| 575 |
value=[],
|
| 576 |
interactive=False,
|
|
|
|
| 577 |
)
|
| 578 |
|
| 579 |
# Top customers protected
|
|
|
|
| 873 |
label="π Live Audit Trail",
|
| 874 |
headers=["Time", "Action", "Component", "User", "Status"],
|
| 875 |
value=[],
|
|
|
|
| 876 |
)
|
| 877 |
|
| 878 |
with gr.Column(scale=2):
|
|
|
|
| 1083 |
server_name="0.0.0.0",
|
| 1084 |
server_port=7860,
|
| 1085 |
share=False,
|
| 1086 |
+
show_error=True,
|
| 1087 |
+
theme="soft"
|
| 1088 |
)
|
| 1089 |
|
| 1090 |
if __name__ == "__main__":
|