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

Repoint the dead tools/__init__ shim at the live local impls and delete the
dead shared/tools/onedrive twin (subagent already ran its local copies via
tools/index.py). No runtime behavior change.
This commit is contained in:
CREDO23 2026-06-04 20:03:58 +02:00
parent 1a778883b3
commit 97ec27c786
4 changed files with 2 additions and 596 deletions

View file

@ -1,9 +1,5 @@
from app.agents.shared.tools.onedrive.create_file import (
create_create_onedrive_file_tool,
)
from app.agents.shared.tools.onedrive.trash_file import (
create_delete_onedrive_file_tool,
)
from .create_file import create_create_onedrive_file_tool
from .trash_file import create_delete_onedrive_file_tool
__all__ = [
"create_create_onedrive_file_tool",