```diff
--- test_files/554-original.txt	2025-03-07 19:07:08
+++ test_files/554-modified.txt	2025-03-07 19:07:08
@@ -1,7 +1,6 @@
 ---
 title: "Calendar Agent"
 sidebarTitle: "Calendar Agent"
-icon: "calendar"
 description: "This project is an example which uses Composio to seamlessly convert your to-do lists into Google Calendar events. It automatically schedules tasks with specified labels and times, ensuring your calendar is always up-to-date and organized."
 ---
 
@@ -51,7 +50,7 @@
         const composioToolset = new LangchainToolSet({
             apiKey: process.env.COMPOSIO_API_KEY
         });
-        const tools = await composioToolset.getActions({
+        const tools = await composioToolset.getTools({
             actions: ["googlecalendar_create_event", "googlecalendar_list_events"]
         });
 
@@ -152,7 +151,7 @@
     `;
 
     async function runAgent() {
-        const tools = await composioToolset.getActions({
+        const tools = await composioToolset.getTools({
         actions: ["googlecalendar_create_event", "googlecalendar_list_events"]
     });
         const prompt = await pull("hwchase17/openai-functions-agent");
```
