File size: 14,467 Bytes
dfa5489 bfd7a80 4c687cf dfa5489 9069068 dfa5489 cae4ac3 dfa5489 cae4ac3 dfa5489 d97a5f0 dfa5489 bfd7a80 dfa5489 bfd7a80 dfa5489 bfd7a80 dfa5489 bfd7a80 dfa5489 bfd7a80 dfa5489 bfd7a80 dfa5489 bfd7a80 dfa5489 bfd7a80 d97a5f0 bfd7a80 dfa5489 bfd7a80 dfa5489 4c687cf bfd7a80 dfa5489 9069068 bfd7a80 dfa5489 bfd7a80 dfa5489 4c687cf dfa5489 bfd7a80 dfa5489 bfd7a80 dfa5489 bfd7a80 dfa5489 bfd7a80 dfa5489 4c687cf dfa5489 a35d025 dfa5489 a35d025 dfa5489 8037b94 dfa5489 8037b94 bfd7a80 8037b94 dfa5489 4c687cf dfa5489 4c687cf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 | #!/usr/bin/env python3
"""
CLI for batch processing session files with AI Agent Guards
"""
import argparse
import json
import sys
from pathlib import Path
from typing import List
import os
import time
import warnings
import asyncio
# Add parent directory to path for imports
sys.path.insert(0, str(Path(__file__).parent.parent))
from multi_agent_demo.core import run_scanners_on_session, aggregate_results
from multi_agent_demo.core.scanner_runner import validate_session_messages
from multi_agent_demo.reports import generate_markdown_report
# ANSI color codes for terminal output (disabled when stdout is not a terminal)
class Colors:
RESET = '\033[0m' if sys.stdout.isatty() else ''
GREEN = '\033[92m' if sys.stdout.isatty() else ''
YELLOW = '\033[93m' if sys.stdout.isatty() else ''
RED = '\033[91m' if sys.stdout.isatty() else ''
BLUE = '\033[94m' if sys.stdout.isatty() else ''
CYAN = '\033[96m' if sys.stdout.isatty() else ''
BOLD = '\033[1m' if sys.stdout.isatty() else ''
def print_colored(text: str, color: str = Colors.RESET):
"""Print colored text to terminal"""
print(f"{color}{text}{Colors.RESET}")
def find_session_files(directory: str) -> List[str]:
"""Find all JSON files in directory"""
json_files = []
path = Path(directory)
if not path.exists():
print_colored(f"β Directory not found: {directory}", Colors.RED)
sys.exit(1)
if not path.is_dir():
print_colored(f"β Not a directory: {directory}", Colors.RED)
sys.exit(1)
for file in path.glob("**/*.json"):
json_files.append(str(file))
for file in path.glob("**/*.txt"):
json_files.append(str(file))
return sorted(json_files)
def load_session_file(file_path: str) -> dict:
"""Load session JSON file"""
try:
with open(file_path, 'r') as f:
return json.load(f)
except Exception as e:
print_colored(f"β οΈ Error loading {file_path}: {e}", Colors.YELLOW)
return None
def print_progress(current: int, total: int, session_name: str, decision: str, elapsed_time: float = None):
"""Print progress bar and current status"""
percentage = int((current / total) * 100)
bar_length = 40
filled = int((current / total) * bar_length)
bar = "β" * filled + "β" * (bar_length - filled)
# Decision icon
icon = "π’" if decision == "SAFE" else "π‘" if decision == "WARNING" else "π΄"
# Format timing if provided
timing_str = ""
if elapsed_time is not None:
timing_str = f" ({elapsed_time:.2f}s)"
print(f"\r[{bar}] {percentage}% | {current}/{total} | {icon} {session_name[:40]:<40}{timing_str}", end='', flush=True)
def main():
parser = argparse.ArgumentParser(
description="Batch scan session files with AI Agent Guards",
formatter_class=argparse.RawDescriptionHelpFormatter,
epilog="""
Examples:
# Scan all JSON files in directory with all scanners
python -m multi_agent_demo.cli -d ./sessions
# Scan single session file
python -m multi_agent_demo.cli -f ./sessions/environment_prod_1234.json
# Scan with specific scanners
python -m multi_agent_demo.cli -d ./sessions -s AlignmentCheck FactsChecker
# Scan single file with specific scanner
python -m multi_agent_demo.cli -f ./session.json -s AlignmentCheck
# Include safe session details in report
python -m multi_agent_demo.cli -d ./sessions --show-safe
Available Scanners:
- PromptGuard: Detects malicious prompts and injections
- AlignmentCheck: Detects goal hijacking and behavioral drift
- FactsChecker: Detects contradictions and ungrounded claims
- DataDisclosureGuard: Detects PII disclosure issues
"""
)
# Create mutually exclusive group for directory vs file
input_group = parser.add_mutually_exclusive_group(required=True)
input_group.add_argument(
"-d", "--directory",
help="Directory containing session JSON files"
)
input_group.add_argument(
"-f", "--file",
help="Single session JSON file to scan"
)
parser.add_argument(
"-s", "--scanners",
nargs="+",
choices=["PromptGuard", "AlignmentCheck", "FactsChecker", "DataDisclosureGuard"],
default=["PromptGuard", "AlignmentCheck", "FactsChecker", "DataDisclosureGuard"],
help="Scanners to run (default: all)"
)
parser.add_argument(
"--show-safe",
action="store_true",
help="Show details for safe sessions in report (default: only show sessions with issues)"
)
parser.add_argument(
"-o", "--output",
help="Output markdown report to file (default: print to console)"
)
args = parser.parse_args()
# Print banner
print_colored("=" * 80, Colors.CYAN)
print_colored("π‘οΈ AI AGENT GUARDS - BATCH SCANNER", Colors.BOLD + Colors.CYAN)
print_colored("=" * 80, Colors.CYAN)
print()
# Find session files (directory or single file)
if args.directory:
print_colored(f"π Scanning directory: {args.directory}", Colors.BLUE)
session_files = find_session_files(args.directory)
if not session_files:
print_colored(f"β No JSON files found in {args.directory}", Colors.RED)
sys.exit(1)
print_colored(f"β
Found {len(session_files)} session file(s)", Colors.GREEN)
else:
# Single file mode
print_colored(f"π Scanning single file: {args.file}", Colors.BLUE)
file_path = Path(args.file)
if not file_path.exists():
print_colored(f"β File not found: {args.file}", Colors.RED)
sys.exit(1)
if not file_path.is_file():
print_colored(f"β Not a file: {args.file}", Colors.RED)
sys.exit(1)
if not str(file_path).endswith(('.json', '.txt')):
print_colored(f"β οΈ Warning: File does not have .json or .txt extension", Colors.YELLOW)
session_files = [str(file_path)]
print_colored(f"β
File loaded successfully", Colors.GREEN)
print()
# Print enabled scanners
print_colored(f"π Enabled scanners: {', '.join(args.scanners)}", Colors.BLUE)
print()
# Process each session
print_colored("βοΈ Processing sessions...", Colors.BLUE)
print()
# Track timing
start_time = time.time()
all_results = []
valid_sessions = []
session_data_list = [] # Store session data for report generation
session_timings = []
for i, session_file in enumerate(session_files, 1):
session_name = Path(session_file).name
# Load session
session_data = load_session_file(session_file)
if not session_data:
print_progress(i, len(session_files), session_name, "ERROR")
continue
# Reject sessions with oversized messages (data blobs that hang LLMs)
ok, err = validate_session_messages(session_data.get("messages", []))
if not ok:
print_colored(f"β οΈ Skipping {session_name}: {err}", Colors.YELLOW)
print_progress(i, len(session_files), session_name, "SKIPPED")
continue
# Run scanners with timing
session_start = time.time()
try:
result = run_scanners_on_session(
session_data=session_data,
enabled_scanners=args.scanners
)
session_elapsed = time.time() - session_start
session_timings.append({"session": session_name, "elapsed": session_elapsed})
all_results.append(result)
valid_sessions.append(session_file)
session_data_list.append(session_data) # Store session data for report
# Determine overall decision for progress display
all_decisions = []
if result.get("alignment_check") and "overall_decision" in result["alignment_check"]:
all_decisions.append(result["alignment_check"]["overall_decision"])
if result.get("prompt_guard") and "overall_decision" in result["prompt_guard"]:
all_decisions.append(result["prompt_guard"]["overall_decision"])
for scanner_result in result.get("nemo_results", {}).values():
if "overall_decision" in scanner_result:
all_decisions.append(scanner_result["overall_decision"])
if "BLOCK" in all_decisions:
decision = "BLOCK"
elif "WARNING" in all_decisions:
decision = "WARNING"
else:
decision = "SAFE"
print_progress(i, len(session_files), session_name, decision, session_elapsed)
except Exception as e:
session_elapsed = time.time() - session_start
session_timings.append({"session": session_name, "elapsed": session_elapsed, "error": True})
print_colored(f"\nβ οΈ Error processing {session_name}: {e}", Colors.YELLOW)
print_progress(i, len(session_files), session_name, "ERROR", session_elapsed)
continue
# Calculate total elapsed time
total_elapsed = time.time() - start_time
print() # New line after progress bar
print()
# Check if any sessions were processed
if not all_results:
print_colored("β No sessions were successfully processed", Colors.RED)
sys.exit(1)
print_colored("β
Processing complete!", Colors.GREEN)
print()
# Aggregate results
print_colored("π Aggregating results...", Colors.BLUE)
aggregated = aggregate_results(all_results)
print()
# Generate markdown report
print_colored("π Generating report...", Colors.BLUE)
report = generate_markdown_report(
all_results=all_results,
session_files=valid_sessions,
session_data_list=session_data_list,
aggregated=aggregated,
show_safe_details=args.show_safe
)
print()
# Output report
if args.output:
# Write to file
with open(args.output, 'w') as f:
f.write(report)
print_colored(f"β
Report saved to: {args.output}", Colors.GREEN)
else:
# Print to console (markdown only, no color codes)
print()
print("=" * 80)
print("π MARKDOWN REPORT (copy and paste)")
print("=" * 80)
print()
print(report) # Just the markdown, no color codes
# Check for scanner errors
scanner_errors = {}
for result in all_results:
if result.get("alignment_check") and "error" in result["alignment_check"]:
scanner_errors["AlignmentCheck"] = result["alignment_check"]["error"]
if result.get("prompt_guard") and "error" in result["prompt_guard"]:
scanner_errors["PromptGuard"] = result["prompt_guard"]["error"]
for scanner_name, scanner_result in result.get("nemo_results", {}).items():
if "error" in scanner_result:
scanner_errors[scanner_name] = scanner_result["error"]
# Print summary
print()
print_colored("=" * 80, Colors.CYAN)
print_colored("π SUMMARY", Colors.BOLD + Colors.CYAN)
print_colored("=" * 80, Colors.CYAN)
print()
print_colored(f"Total Sessions: {aggregated['total_sessions']}", Colors.BLUE)
print_colored(f"Safe Sessions: {aggregated['safe_sessions']} β
", Colors.GREEN)
print_colored(f"Sessions with Issues: {aggregated['unsafe_sessions']} π¨", Colors.RED if aggregated['unsafe_sessions'] > 0 else Colors.GREEN)
print()
print_colored(f"Total Blocks: {aggregated['total_blocks']} π«", Colors.RED if aggregated['total_blocks'] > 0 else Colors.GREEN)
print_colored(f"Total Warnings: {aggregated['total_warnings']} β οΈ", Colors.YELLOW if aggregated['total_warnings'] > 0 else Colors.GREEN)
print_colored(f"Total Safe: {aggregated['total_safe']} β
", Colors.GREEN)
print()
# Print timing information
print_colored("β±οΈ TIMING", Colors.BLUE)
print()
print_colored(f"Total Elapsed: {total_elapsed:.2f}s", Colors.BLUE)
if session_timings:
avg_time = sum(t["elapsed"] for t in session_timings) / len(session_timings)
min_time = min(t["elapsed"] for t in session_timings)
max_time = max(t["elapsed"] for t in session_timings)
print_colored(f"Average per Session: {avg_time:.2f}s", Colors.BLUE)
print_colored(f"Fastest Session: {min_time:.2f}s", Colors.GREEN)
print_colored(f"Slowest Session: {max_time:.2f}s", Colors.YELLOW)
print()
# Show scanner errors if any
if scanner_errors:
print_colored("β οΈ SCANNER ERRORS", Colors.YELLOW)
print()
for scanner_name, error in scanner_errors.items():
print_colored(f" β’ {scanner_name}: {error}", Colors.YELLOW)
print()
print_colored("=" * 80, Colors.CYAN)
# Cleanup: Close any pending async tasks to avoid "Event loop is closed" errors
# This happens because some libraries (httpx, openai) create async clients that
# need cleanup, but we're running in a synchronous context
try:
# Get the current event loop if it exists
loop = asyncio.get_event_loop()
if not loop.is_closed():
# Cancel all pending tasks
pending = asyncio.all_tasks(loop)
for task in pending:
task.cancel()
# Give tasks a chance to complete cancellation
if pending:
loop.run_until_complete(asyncio.gather(*pending, return_exceptions=True))
except RuntimeError:
# No event loop or already closed - that's fine
pass
if __name__ == "__main__":
# Suppress asyncio warnings about unclosed resources
# These occur when async libraries (httpx, openai SDK) create async clients
# but we're running in a synchronous CLI context
warnings.filterwarnings("ignore", category=RuntimeWarning, message=".*coroutine.*was never awaited")
warnings.filterwarnings("ignore", message=".*Event loop is closed.*")
# Also suppress asyncio errors logged to stderr
import logging
logging.getLogger("asyncio").setLevel(logging.CRITICAL)
try:
main()
finally:
# Final cleanup: ensure all async resources are properly closed
try:
loop = asyncio.get_event_loop()
if not loop.is_closed():
loop.close()
except RuntimeError:
pass
|