custom_action.md
from ...nodes.action import Action
class MyActionNode(Action):
def __init__(self):
super().__init__()
def execute(self, blackboard: dict) -> str:
...Last updated
Was this helpful?
from ...nodes.action import Action
class MyActionNode(Action):
def __init__(self):
super().__init__()
def execute(self, blackboard: dict) -> str:
...Last updated
Was this helpful?
Was this helpful?