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

Repoint the dead tools/__init__ shim at the live local impls and delete the
dead shared/tools/google_drive 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 97ec27c786
commit 70fb19890b
4 changed files with 2 additions and 656 deletions

View file

@ -1,9 +1,5 @@
from app.agents.shared.tools.google_drive.create_file import (
create_create_google_drive_file_tool,
)
from app.agents.shared.tools.google_drive.trash_file import (
create_delete_google_drive_file_tool,
)
from .create_file import create_create_google_drive_file_tool
from .trash_file import create_delete_google_drive_file_tool
__all__ = [
"create_create_google_drive_file_tool",