Skip to content

Start action subtask event

StartActionSubtaskEvent

Bases: BaseActionSubtaskEvent

Source code in griptape/griptape/events/start_action_subtask_event.py
@define
class StartActionSubtaskEvent(BaseActionSubtaskEvent):
    def to_dict(self) -> dict:
        from griptape.schemas import StartActionSubtaskEventSchema

        return dict(StartActionSubtaskEventSchema().dump(self))

to_dict()

Source code in griptape/griptape/events/start_action_subtask_event.py
def to_dict(self) -> dict:
    from griptape.schemas import StartActionSubtaskEventSchema

    return dict(StartActionSubtaskEventSchema().dump(self))