from typing import Dict, Any
# In-memory store for demo (should be replaced by Redis/DB for persistence)
runs: Dict[str, Dict[str, Any]] = {}