From bfd944e2920714f3dae46626c453847aee99dfcf Mon Sep 17 00:00:00 2001 From: Karan Vaidya Date: Fri, 13 Sep 2024 17:42:01 +0530 Subject: [PATCH] Rm Github PR tool --- python/swe/swekit/scaffold/templates/camelai/agent.template | 2 +- python/swe/swekit/scaffold/templates/crewai/agent.template | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/swe/swekit/scaffold/templates/camelai/agent.template b/python/swe/swekit/scaffold/templates/camelai/agent.template index d5c9d94641..595dda89c0 100644 --- a/python/swe/swekit/scaffold/templates/camelai/agent.template +++ b/python/swe/swekit/scaffold/templates/camelai/agent.template @@ -34,7 +34,7 @@ tools = [ *composio_toolset.get_actions( actions=[ say, # This is just here as an example of a custom tool, you can remove it - Action.GITHUB_CREATE_A_PULL_REQUEST + # Action.GITHUB_CREATE_A_PULL_REQUEST ] ), ] diff --git a/python/swe/swekit/scaffold/templates/crewai/agent.template b/python/swe/swekit/scaffold/templates/crewai/agent.template index 1d2aa86152..9cfb495a1c 100644 --- a/python/swe/swekit/scaffold/templates/crewai/agent.template +++ b/python/swe/swekit/scaffold/templates/crewai/agent.template @@ -32,7 +32,7 @@ tools = [ *composio_toolset.get_actions( actions=[ say, # This is just here as an example of a custom tool, you can remove it - Action.GITHUB_CREATE_A_PULL_REQUEST + # Action.GITHUB_CREATE_A_PULL_REQUEST ] ), ]