```diff
--- test_files/139-original.txt	2025-03-07 19:06:25
+++ test_files/139-modified.txt	2025-03-07 19:06:25
@@ -61,7 +61,7 @@
 
 # Initialize a FunctionCallingAgentWorker with the tools, LLM, and system messages
 agent = FunctionCallingAgentWorker(
-    tools=tools,  # Tools available for the agent to use
+    tools=tools,  # Tools available for the agent to use # type: ignore
     llm=llm,  # Language model for processing requests
     prefix_messages=prefix_messages,  # Initial system messages for context
     max_function_calls=10,  # Maximum number of function calls allowed
@@ -71,12 +71,12 @@
 
 
 # Define the tools
-pr_agent_tools = composio_toolset.get_actions(
+pr_agent_tools = composio_toolset.get_tools(
     actions=[
-        Action.GITHUB_GET_CODE_CHANGES_IN_PR,
-        Action.GITHUB_PULLS_CREATE_REVIEW_COMMENT,
-        Action.GITHUB_ISSUES_CREATE,
-        Action.SLACKBOT_CHAT_POST_MESSAGE,
+        Action.GITHUB_GET_A_PULL_REQUEST,
+        Action.GITHUB_CREATE_A_REVIEW_FOR_A_PULL_REQUEST,
+        Action.GITHUB_CREATE_AN_ISSUE,
+        Action.SLACK_SENDS_A_MESSAGE_TO_A_SLACK_CHANNEL,
     ]
 )
 
@@ -94,4 +94,4 @@
 
 print("Listener started!")
 print("Create a pr to get the review")
-listener.listen()
+listener.wait_forever()
```
