From 43e9efa1d48ea1ca6668954cc26e7d1ad9276da9 Mon Sep 17 00:00:00 2001 From: a2a-cloud Date: Mon, 13 Jul 2026 03:08:51 +0000 Subject: [PATCH] a2a-source-edit: write agent.py --- agent.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/agent.py b/agent.py index 96e1afe..da9cb09 100644 --- a/agent.py +++ b/agent.py @@ -8,7 +8,6 @@ caller-configured; when they are absent the corresponding evidence is marked as """ from __future__ import annotations -import asyncio import hashlib import json import re @@ -113,6 +112,15 @@ class ProbeMode(str, Enum): SYNTHETIC = "synthetic" +class AuditScope(str, Enum): + CARD = "card" + CONFIGURATION = "configuration" + RUNTIME = "runtime" + REPOSITORY = "repository" + RISK = "risk" + REMEDIATION = "remediation" + + class Evidence(StrictModel): id: str source: str