Skip to content

Commit 3d56415

Browse files
authored
feat: add Google Drive and Google Docs to enabled toolkits (#153) (#154)
* feat: add Google Drive and Google Docs to enabled toolkits - Add googledrive and googledocs to ENABLED_TOOLKITS array - Enables Tool Router access to Google Drive and Google Docs tools * docs: update JSDoc to mention all Google integrations
1 parent 26d2104 commit 3d56415

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/chat/setupToolsForRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { getComposioTools } from "@/lib/composio/toolRouter";
88
* Sets up and filters tools for a chat request.
99
* Aggregates tools from:
1010
* - MCP server (via HTTP transport to /api/mcp for proper auth)
11-
* - Composio Tool Router (Google Sheets and other connectors)
11+
* - Composio Tool Router (Google Sheets, Google Drive, Google Docs)
1212
*
1313
* @param body - The chat request body
1414
* @returns Filtered tool set ready for use

lib/composio/toolRouter/createSession.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { getCallbackUrl } from "../getCallbackUrl";
55
* Toolkits available in Tool Router sessions.
66
* Add more toolkits here as we expand Composio integration.
77
*/
8-
const ENABLED_TOOLKITS = ["googlesheets"];
8+
const ENABLED_TOOLKITS = ["googlesheets", "googledrive", "googledocs"];
99

1010
/**
1111
* Create a Composio Tool Router session for a user.

0 commit comments

Comments
 (0)