Contents:
SDK:
Examples:
from abc import ABC, abstractmethod [docs] class ITool(ABC): [docs] @abstractmethod def call(self, *args, **kwargs): pass @abstractmethod def __call__(self, *args, **kwargs): pass