Source code for swarmauri.core.chains.IChainContextLoader

from abc import ABC, abstractmethod
from typing import Dict, Any

[docs] class IChainContextLoader(ABC):
[docs] @abstractmethod def load_context(self, context_id: str) -> Dict[str, Any]: """Load the execution context by its identifier.""" pass