refactor(automations): move agent_task to builtin and restructure dispatch

This commit is contained in:
CREDO23 2026-05-29 18:13:09 +02:00
parent f356e304e8
commit 30fff9e52f
22 changed files with 142 additions and 133 deletions

View file

@ -3,7 +3,6 @@
from __future__ import annotations
from .errors import DispatchError
from .run import dispatch_run
from .start import start_run
from .launch import launch_run
__all__ = ["DispatchError", "dispatch_run", "start_run"]
__all__ = ["DispatchError", "launch_run"]