Source code for swarmauri.experimental.chains.IChainScheduler

from abc import ABC, abstractmethod
from swarmauri.core.chains.IChain import IChain

[docs] class IChainScheduler(ABC):
[docs] @abstractmethod def schedule_chain(self, chain: IChain, schedule: str) -> None: """Schedule the execution of the given chain.""" pass