```diff
--- test_files/427-original.txt	2025-03-07 19:06:58
+++ test_files/427-modified.txt	2025-03-07 19:06:58
@@ -77,7 +77,7 @@
         - Recent activities
 
         Make sure to execute these search and scrape actions for each attendee and return the compiled information in a structured format.`,
-        tools: ["EXA_SEARCH","FIRECRAWL_SCRAPE", "FIRECRAWL_SEARCH"],
+        tools: ["EXA_SEARCH"],
         processOutput: (output) => {
             try {
                 const parsed = typeof output === 'string' ? JSON.parse(output) : output;
\ No newline at end of file
@@ -102,7 +102,6 @@
 Execute these steps:
 1. Use GMAIL_GET_PROFILE to confirm the email account access
 2. Use GMAIL_LIST_THREADS to find recent threads with the meeting attendees
-3. Use GMAIL_FETCH_EMAILS to get the content of latest 5 emails pass the attendee email id as query
 
 Look for:
 - Recent email threads with these attendees
\ No newline at end of file
@@ -203,7 +202,7 @@
             const currentPair = steps.slice(i, i + 2);
             const requiredTools = [...new Set(currentPair.flatMap(step => step.tools))];
             
-            const tools = await toolset.get_actions({
+            const tools = await toolset.getTools({
                 actions: requiredTools
             });
 
\ No newline at end of file
```
