```diff
--- test_files/533-original.txt	2025-03-07 19:07:06
+++ test_files/533-modified.txt	2025-03-07 19:07:06
@@ -40,14 +40,14 @@
 </Step>
 
 <Step title="Authenticate Google Calendar Account">
-We'll use Jessica as our example user. There are multiple ways to authenticate an account:
+We'll use **`default`** as our example user. There are multiple ways to authenticate an account:
 <Tabs>
         <Tab title="Python">
             <CodeGroup>
-                ```python Authenticate Jessica's Google Calendar Account
+                ```python Authenticate Google Calendar Account
                 from composio import ComposioToolSet, App
 
-                toolset = ComposioToolSet(entity_id="Jessica")
+                toolset = ComposioToolSet(entity_id="default")
                 entity = toolset.get_entity()
                 request = entity.initiate_connection(App.GOOGLECALENDAR)
 
@@ -65,16 +65,16 @@
 
 </Step>
 
-<Step title="Initialize Composio and OpenAI">
+<Step title="Initialize Composio Toolset and OpenAI">
     Set up your development environment:
 
             <CodeGroup>
-                ```python Initialize Composio and OpenAI
+                ```python Initialize Composio Toolset and OpenAI
                 from composio_openai import ComposioToolSet, Action
                 from openai import OpenAI
 
                 openai_client = OpenAI()
-                composio_toolset = ComposioToolSet(entity_id="Jessica")
+                composio_toolset = ComposioToolSet(entity_id="default")
                 ```
             </CodeGroup>
 
@@ -144,23 +144,23 @@
 </Step>
 
 <Step title="Authenticate Google Calendar Account">
-We'll use Jessica as our example user. There are multiple ways to authenticate an account:
+We'll use **`default`** as our example user. There are multiple ways to authenticate an account:
 <Tabs>
     <Tab title="CLI">
             <CodeGroup>
-                ```bash Authenticate Jessica's Google Calendar Account
-                composio add googlecalendar -e "Jessica" # Launches Google Calendar login
+                ```bash Authenticate Google Calendar Account
+                composio add googlecalendar -e "default" # Launches Google Calendar login
                 ```
             </CodeGroup>
     </Tab>
     <Tab title="JavaScript">
             <CodeGroup>
-                ```javascript Authenticate Jessica's Google Calendar Account
+                ```javascript Authenticate Google Calendar Account
                 import { Composio } from "composio-core";
 
                 const client = new Composio({ apiKey: process.env.COMPOSIO_API_KEY });
 
-                const entity = await client.getEntity("Jessica");
+                const entity = await client.getEntity("default");
                 const connection = await entity.initiateConnection('googlecalendar');
 
                 console.log(`Open this URL to authenticate: ${connection.redirectUrl}`);
@@ -177,11 +177,11 @@
 
 </Step>
 
-<Step title="Initialize Composio and OpenAI">
+<Step title="Initialize Composio's OpenAIToolset and OpenAI">
     Set up your development environment:
 
             <CodeGroup>
-                ```javascript Initialize Composio and OpenAI
+                ```javascript Initialize Composio's OpenAIToolset and OpenAI
                 import { OpenAI } from "openai";
                 import { OpenAIToolSet } from "composio-core";
 
@@ -191,7 +191,7 @@
 
                 const composio_toolset = new OpenAIToolSet({
                     apiKey: process.env.COMPOSIO_API_KEY,
-                    entityId: "Jessica",
+                    entityId: "default",
                 });
                 ```
             </CodeGroup>
@@ -245,10 +245,10 @@
 <Tab title="CLI">
 <Steps>
 <Step title="Authenticate Google Calendar Account">
-We'll use Jessica as our example user. There are multiple ways to authenticate an account:
+We'll use **`default`** as our example user. There are multiple ways to authenticate an account:
             <CodeGroup>
-                ```bash Authenticate Jessica's Google Calendar Account
-                composio add googlecalendar -e "Jessica" # Launches Google Calendar login
+                ```bash Authenticate Google Calendar Account
+                composio add googlecalendar -e "default" # Launches Google Calendar login
                 ```
             </CodeGroup>
     <Warning>
@@ -281,7 +281,7 @@
                 --header 'X-API-Key: ADD YOUR API KEY HERE' \
                 --data '{
                     "appName": "GOOGLECALENDAR", #add your app name here
-                    "entityId": "Jessica", #add your entity id here
+                    "entityId": "default", #add your entity id here
                     "input": {
                         "start_datetime": "11:15 PM, 1 December 2024",
                         "event_duration": "2h"
@@ -314,4 +314,4 @@
     Let's authenticate your user account to perform actions.
 </Card>
 </CardGroup>
-<br/>
\ No newline at end of file
+<br/>
```
