```diff
--- test_files/534-original.txt	2025-03-07 19:07:07
+++ test_files/534-modified.txt	2025-03-07 19:07:07
@@ -4,9 +4,18 @@
 description: "Learn how to use Triggers in less than 5 minutes"
 ---
 
-## Composio Quick Start
-In this guide we'll configure and enable a trigger to listen to new emails in Gmail & configure an agent to add important label to emails that contains details about bank transactions.
+## Listen to New Emails in Gmail
+In this guide, we'll:
 
+1. 🔐 Connect your Gmail account with Composio
+2. 🛠 Enable Triggers to listen to new emails in Gmail
+3. 🧠 Pass these triggers event payloads to an AI language model to identify bank transactions
+4. ⭐ Execute an action from Gmail tool to add **important** label to relevant emails
+
+<Tip>
+**Tools** represent a group of actions specific to an app. **Actions** are operations you can perform - like starring a repo on GitHub or creating an issue in Linear.
+</Tip>
+
 <Tabs>
 <Tab title="Python">
 <Steps>
@@ -18,16 +27,16 @@
 </Step>
 
 <Step title="Connect Your Gmail Account">
-We'll use **`Jessica`** as the user id [(entity id)](../../patterns/Auth/connected_account#entities).
+We'll use **`default`** as the user id, also known as [entity id](../../patterns/Auth/connected_account#entities).
 <Info>You need to have an active Gmail Integration. Learn how to do this [here](https://youtu.be/LmyWy4LiedQ?si=u5uFArlNL0tew0Wf)</Info>
 <CodeGroup>
 ```shell CLI
 composio login 
-composio add gmail -e "Jessica"
+composio add gmail -e "default"
 ```
 ```python Python
 from composio_openai import ComposioToolSet, App, Trigger
-toolset = ComposioToolSet(entity_id="Jessica")
+toolset = ComposioToolSet(entity_id="default")
 
 request = toolset.initiate_connection(app=App.GMAIL)
 
@@ -45,7 +54,7 @@
 composio triggers enable gmail_new_gmail_message
 ```
 ```python Python
-entity = toolset.get_entity(id="Jessica")
+entity = toolset.get_entity(id="default")
 
 entity.enable_trigger(
     app=App.GMAIL,
@@ -115,13 +124,13 @@
 </Step>
 
 <Step title="Connect Your Gmail Account">
-We'll use **`Jessica`** as the user id [(entity id)](../../patterns/Auth/connected_account#entities).
+We'll use **`default`** as the user id [(entity id)](../../patterns/Auth/connected_account#entities).
 <Info>You need to have an active Gmail Integration. Learn how to do this [here](https://youtu.be/LmyWy4LiedQ?si=u5uFArlNL0tew0Wf)</Info>
 
 <CodeGroup>
 ```shell CLI
 composio login
-composio add gmail -e "Jessica" 
+composio add gmail -e "default" 
 ```
 ```javascript JavaScript
 import { OpenAIToolSet, Composio } from "composio-core";
@@ -132,7 +141,7 @@
 
 const connectionRequest = await toolset.client.connectedAccounts.initiate({
     appName: "gmail",
-    entityId: "Jessica",
+    entityId: "default",
     authMode: "OAUTH2",
     authConfig: {},
 });
@@ -150,7 +159,7 @@
 composio triggers enable gmail_new_gmail_message
 ```
 ```javascript JavaScript
-const entity = toolset.client.getEntity("Jessica");
+const entity = toolset.client.getEntity("default");
 
 const response = await entity.setupTrigger("gmail", "gmail_new_gmail_message", {
     userId: "me",
@@ -193,7 +202,7 @@
 <Step title="Create a Trigger Listener">
 <CodeGroup>
 ```javascript JavaScript
-toolset.client.triggers.subscribe(
+toolset.triggers.subscribe(
     (data) => {
         const {
             payload: {
@@ -216,24 +225,15 @@
 </Tab>
 </Tabs>
 
-## What Just Happened? 🎉
 
-Congratulations! You've just:
 
-1. 🔐 Connected your Gmail account with Composio
-2. 🛠 Enabled Triggers
-3. 🧠 Passed these triggers event payloads to an AI language model
-4. ⭐ Executed an action from Gmail tool
-
-<br/>
-
 ## Next Steps
 Now that you've seen how to use triggers, you can explore the following resources:
 <CardGroup cols={2}>
 <Card title="Tools" href="../../patterns/tools/what-are-tools">
 Checkout our toolset of 250+ LLM ready tools to build powerful AI applications
 </Card>
-<Card title="Connections" href="patterns/Auth/connected_account">
+<Card title="Connections" href="../../patterns/Auth/connected_account">
 Learn how to create and manage connections for your users
 </Card>
 <Card title="Compatible Agentic Frameworks" href="/framework/autogen">
@@ -248,4 +248,4 @@
 <Card title="Other Concepts" href="../../introduction/foundations/components/workspace">
 Learn about workspace environments, using CLI & other concepts
 </Card>
-</CardGroup>
\ No newline at end of file
+</CardGroup>
```
