refactor(agents): colocate luma connector tools into subagent slice

The luma subagent already ran its own local tool impls (tools/index.py
imports the local create_event/list_events/read_event). The shared/tools/luma
copies were a dead twin, only referenced by the subagent's unused
tools/__init__ shim. Repoint that shim at the local modules and delete the
dead shared copies. No runtime behavior change.
This commit is contained in:
CREDO23 2026-06-04 20:02:19 +02:00
parent 4d02af2a53
commit 425e6e50a3
6 changed files with 3 additions and 460 deletions

View file

@ -1,12 +1,6 @@
from app.agents.shared.tools.luma.create_event import (
create_create_luma_event_tool,
)
from app.agents.shared.tools.luma.list_events import (
create_list_luma_events_tool,
)
from app.agents.shared.tools.luma.read_event import (
create_read_luma_event_tool,
)
from .create_event import create_create_luma_event_tool
from .list_events import create_list_luma_events_tool
from .read_event import create_read_luma_event_tool
__all__ = [
"create_create_luma_event_tool",