```diff
--- test_files/548-original.txt	2025-03-07 19:07:08
+++ test_files/548-modified.txt	2025-03-07 19:07:08
@@ -1,7 +1,6 @@
 ---
 title: "RAG Tool Agent"
 sidebarTitle: "RAG Tool Agent"
-icon: "database"
 description: "This project involves setting up and running a system of agents to add content to a RAG (Retrieval-Augmented Generation) tool, perform queries, and return relevant information. We use Composio to setup this Local Tool and OpenAI GPT-4o to power the agents. Follow this guide to set up and run the project."
 ---
 
@@ -47,7 +46,7 @@
         });
 
         // Get the RAG tool actions from the Composio ToolSet
-        const tools = await composioToolset.getActions({
+        const tools = await composioToolset.getTools({
             actions: ["ragtool_add_content", "ragtool_query"]
         });
         ```
@@ -167,7 +166,7 @@
             workspaceEnv: ExecEnv.DOCKER
         });
 
-        const tools = await composioToolset.getActions({
+        const tools = await composioToolset.getTools({
             actions: ["ragtool_add_content", "ragtool_query"]
         });
 
```
