```diff
--- test_files/552-original.txt	2025-03-07 19:07:08
+++ test_files/552-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."
 ---
 
@@ -54,7 +53,7 @@
         composio_toolset = ComposioToolSet()
         tools = composio_toolset.get_tools(apps=[App.GOOGLECALENDAR])
 
-        # Retreive the current date and time
+        # Retrieve the current date and time
         date = datetime.today().strftime("%Y-%m-%d")
         timezone = datetime.now().astimezone().tzinfo        
         ```
@@ -149,7 +148,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"]
         });
 
@@ -240,7 +239,7 @@
     composio_toolset = ComposioToolSet()
     tools = composio_toolset.get_tools(apps=[App.GOOGLECALENDAR])
 
-    # Retreive the current date and time
+    # Retrieve the current date and time
     date = datetime.today().strftime("%Y-%m-%d")
     timezone = datetime.now().astimezone().tzinfo
 
@@ -306,7 +305,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");
```
