BaseNode
- description (str): Description of the node.
- node_id (Optional[str]): ID of the node. If not provided, it will be generated automatically. (default: :obj:
None)
class BaseNode(ABC):
None)def __init__(self, description: str, node_id: Optional[str] = None):
def reset(self, *args: Any, **kwargs: Any):
def set_channel(self, channel: TaskChannel):
def stop(self):