petter2025 commited on
Commit
4cd6be7
·
verified ·
1 Parent(s): 88c664f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -15
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- title: Agentic Reliability Framework (ARF) v4 API
3
  emoji: 🤖
4
  colorFrom: blue
5
  colorTo: green
@@ -9,23 +9,25 @@ app_file: app.py
9
  pinned: false
10
  ---
11
 
12
- # Agentic Reliability Framework (ARF) v4.2.0 AI Reliability & Self-Healing Control Plane
13
 
14
  **Problem:** Most AI‑driven governance systems fail silently in production, leading to outages, security breaches, and compliance violations.
15
 
16
- **Solution:** ARF turns probabilistic AI into deterministic, auditable action using Bayesian inference, semantic memory, and deterministic probability thresholds (DPT).
17
 
18
  **Outcome:** Reduce MTTR by up to 85% with self‑healing systems, backed by fully explainable risk scores.
19
 
 
 
20
  ---
21
 
22
  ## 🚀 Start Here
23
 
24
  | | |
25
  |--|--|
26
- | **📚 API Docs** | [https://a-r-f-agentic-reliability-framework-api.hf.space/docs](https://a-r-f-agentic-reliability-framework-api.hf.space/docs) |
27
- | **🧪 Live Demo** | [Gradio Dashboard](https://a-r-f-agentic-reliability-framework-api.hf.space/) |
28
- | **📦 GitHub** | [github.com/arf-foundation/agentic-reliability-framework](https://github.com/arf-foundation/agentic-reliability-framework) |
29
  | **📅 Book a Call** | [Calendly](https://calendly.com/petter2025us/30min) |
30
 
31
  ---
@@ -36,20 +38,20 @@ pinned: false
36
  import requests
37
 
38
  response = requests.post(
39
- "https://a-r-f-agentic-reliability-framework-api.hf.space/v1/incidents/evaluate",
40
  json={
41
  "service_name": "payment-gateway",
42
  "event_type": "latency_spike",
43
  "severity": "high",
44
- "metrics": {"latency_p99": 350, "error_rate": 0.12}
45
  }
46
  )
47
  print(response.json())
48
  ```
49
 
50
- The response includes a full HealingIntent with:
51
 
52
- * risk\_score: calibrated failure probability
53
 
54
  * risk\_factors: additive contributions from conjugate prior, hyperprior, and HMC
55
 
@@ -58,14 +60,16 @@ The response includes a full HealingIntent with:
58
  * decision\_trace: expected losses and variance
59
 
60
 
61
- 🧠 Key Capabilities
62
- -------------------
 
 
63
 
64
  * **Bayesian Risk Scoring** – Conjugate priors + HMC for calibrated uncertainty.
65
 
66
  * **Semantic Memory** – FAISS‑based retrieval of similar past incidents.
67
 
68
- * **DPT Thresholds** – Deterministic approve/deny/escalate (0.2/0.8).
69
 
70
  * **Multi‑Agent Orchestration** – Anomaly detection, root cause, forecasting.
71
 
@@ -76,7 +80,7 @@ The response includes a full HealingIntent with:
76
  ```text
77
  User Request → Policy Evaluation → Cost Estimation → Risk Scoring
78
 
79
- HealingIntent ← Decision (Bayesian Loss)
80
  ```
81
 
82
  All decisions are immutable, signed, and fully traceable via ancestor\_chain and infrastructure\_intent fields.
@@ -94,4 +98,6 @@ Then open [http://localhost:7860](http://localhost:7860/) for the Gradio UI an
94
  📚 About ARF
95
  ------------
96
 
97
- Agentic Reliability Framework is an open‑source advisory engine for cloud infrastructure governance, powered by Bayesian inference. Learn more at [github.com/arf-foundation](https://github.com/arf-foundation).
 
 
 
1
  ---
2
+ title: Agentic Reliability Framework (ARF) v4 – Public API Demo
3
  emoji: 🤖
4
  colorFrom: blue
5
  colorTo: green
 
9
  pinned: false
10
  ---
11
 
12
+ # Agentic Reliability Framework (ARF) – Public API Demo (Sandbox)
13
 
14
  **Problem:** Most AI‑driven governance systems fail silently in production, leading to outages, security breaches, and compliance violations.
15
 
16
+ **Solution:** ARF turns probabilistic AI into deterministic, auditable action using Bayesian inference, semantic memory, and **expected loss minimisation**.
17
 
18
  **Outcome:** Reduce MTTR by up to 85% with self‑healing systems, backed by fully explainable risk scores.
19
 
20
+ > ℹ️ **This Space provides a sanitised, mock API endpoint.** The real ARF core engine is proprietary, access‑controlled, and available only to qualified pilots and enterprise customers. See the [public specification](https://arf-foundation.github.io/arf-spec/) for details.
21
+
22
  ---
23
 
24
  ## 🚀 Start Here
25
 
26
  | | |
27
  |--|--|
28
+ | **📚 API Docs** | [https://a-r-f-arf-sandbox-api.hf.space/docs](https://a-r-f-arf-sandbox-api.hf.space/docs) |
29
+ | **🧪 Live Demo** | [Gradio Dashboard](https://a-r-f-arf-sandbox-api.hf.space/) |
30
+ | **📦 Public Spec** | [github.com/arf-foundation/arf-spec](https://github.com/arf-foundation/arf-spec) |
31
  | **📅 Book a Call** | [Calendly](https://calendly.com/petter2025us/30min) |
32
 
33
  ---
 
38
  import requests
39
 
40
  response = requests.post(
41
+ "https://a-r-f-arf-sandbox-api.hf.space/v1/evaluate",
42
  json={
43
  "service_name": "payment-gateway",
44
  "event_type": "latency_spike",
45
  "severity": "high",
46
+ "metrics": {"latency_p99": 450, "error_rate": 0.12}
47
  }
48
  )
49
  print(response.json())
50
  ```
51
 
52
+ The response includes a mock HealingIntent with:
53
 
54
+ * risk\_score: simulated failure probability
55
 
56
  * risk\_factors: additive contributions from conjugate prior, hyperprior, and HMC
57
 
 
60
  * decision\_trace: expected losses and variance
61
 
62
 
63
+ ⚠️ **All responses from this endpoint are simulated.** The real Bayesian engine is not exposed publicly.
64
+
65
+ 🧠 Key Capabilities (Conceptual Overview)
66
+ -----------------------------------------
67
 
68
  * **Bayesian Risk Scoring** – Conjugate priors + HMC for calibrated uncertainty.
69
 
70
  * **Semantic Memory** – FAISS‑based retrieval of similar past incidents.
71
 
72
+ * **Expected Loss Minimisation** – Chooses approve/deny/escalate by minimising cost-weighted risk, not static thresholds.
73
 
74
  * **Multi‑Agent Orchestration** – Anomaly detection, root cause, forecasting.
75
 
 
80
  ```text
81
  User Request → Policy Evaluation → Cost Estimation → Risk Scoring
82
 
83
+ HealingIntent ← Decision (Expected Loss)
84
  ```
85
 
86
  All decisions are immutable, signed, and fully traceable via ancestor\_chain and infrastructure\_intent fields.
 
98
  📚 About ARF
99
  ------------
100
 
101
+ The **Agentic Reliability Framework** is a governed, mathematically grounded advisory layer for AI infrastructure. The public specification, demo UI, and sandbox API are open‑source (Apache 2.0). **The core Bayesian engine is proprietary and access‑controlled** — available for pilot evaluation and enterprise licensing under outcome‑based pricing.
102
+
103
+ Learn more at [github.com/arf-foundation](https://github.com/arf-foundation) and request access via petter2025us@outlook.com.