generate_security_report
Compile a structured security report from clinical AI model evaluation results, marking untested sections as not evaluated and providing a deployment recommendation only when a Security Posture Score is supplied.
Instructions
Compose a structured security report from whichever tool outputs you have.
Pass the raw dict returned by any subset of run_fgsm,
run_boundary_attack, run_membership_inference,
assess_attack_coverage, check_rbac, score_audit_completeness,
score_compliance, and compute_sps. Sections you didn't run are
marked "not evaluated", never silently assumed to pass. A
deployment recommendation only appears if `sps` (compute_sps's
own output) is supplied -- it is never inferred from partial
results.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sps | No | ||
| fgsm | No | ||
| rbac | No | ||
| boundary | No | ||
| compliance | No | ||
| attack_coverage | No | ||
| audit_completeness | No | ||
| membership_inference | No |