TradingAgents/agent_os/backend/store.py

5 lines
143 B
Python

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