{% extends "base.html" %} {% set active_page = "agents" %} {% block title %}FaultRay - AI Agent Assessment{% endblock %} {% block page_title %}AI Agent Assessment{% endblock %} {% block page_subtitle %}Evaluate adoption risk, monitoring plans, and chaos scenarios for AI agents{% endblock %} {% block top_actions %} {% endblock %} {% block content %}
Run the assessment to see results.
{% endif %}Run the assessment to generate a monitoring plan.
{% endif %}| Agent | Risk Score | Risk Level | Blast Radius | Safe to Deploy |
|---|---|---|---|---|
| {{ a.agent_name }} | {% if a.risk_score >= 7 %} {{ "%.1f"|format(a.risk_score) }}/10 {% elif a.risk_score >= 4 %} {{ "%.1f"|format(a.risk_score) }}/10 {% else %} {{ "%.1f"|format(a.risk_score) }}/10 {% endif %} | {% if a.risk_level == "critical" %} CRITICAL {% elif a.risk_level == "high" %} HIGH {% elif a.risk_level == "medium" %} MEDIUM {% else %} LOW {% endif %} | {{ a.max_blast_radius }} component(s) | {% if a.safe_to_deploy %} Yes {% else %} No {% endif %} |
| No data yet. Run assessment above. | ||||
| Failsafe | Status | Description | Recommendation |
|---|---|---|---|
| {{ fs.name }} | {% if fs.present %} Present {% else %} Missing {% endif %} | {{ fs.description }} | {{ fs.recommendation }} |
| Rule | Component | Metric | Threshold | Predicted Fault |
|---|---|---|---|---|
| {{ rule.name }} | {{ rule.component_id }} | {{ rule.metric }} | {{ rule.operator }} {{ rule.threshold }} | {{ rule.predicted_fault }} |
| Scenario | Description | Fault Types |
|---|---|---|
| {{ s.name }} | {{ s.description }} | {% for f in s.faults %} {{ f.fault_type }} {% endfor %} |