From a1883ba8400fefe4386fb2ee1d397e880cf69786 Mon Sep 17 00:00:00 2001 From: Siddhartha Kushwaha Date: Sun, 10 May 2026 05:41:11 +0530 Subject: [PATCH] fix: correct typo in shared_instructions.md - change 'n ProgrammaticToolCalling' to 'In ProgrammaticToolCalling' --- shared_instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared_instructions.md b/shared_instructions.md index b62c1d8f..8d05f150 100644 --- a/shared_instructions.md +++ b/shared_instructions.md @@ -41,7 +41,7 @@ Agents (except for Agent Swarm agent) can extend their functionality by adding c - For standard tasks, prefer shared tools (`ManageConnections`, `SearchTools`, `FindTools`, `ExecuteTool`). - If `ProgrammaticToolCalling` is unavoidable, direct calls to `composio.tools.execute(...)` and `composio.tools.get(...)` are allowed. -- n `ProgrammaticToolCalling`, `composio` (the injected Composio client object for `tools.get`/`tools.execute`) and `user_id` are automatically available at runtime. +- In `ProgrammaticToolCalling`, `composio` (the injected Composio client object for `tools.get`/`tools.execute`) and `user_id` are automatically available at runtime. Do not import them manually unless explicitly needed for compatibility. ```python