```diff
--- test_files/032-original.txt	2025-03-07 19:06:15
+++ test_files/032-modified.txt	2025-03-07 19:06:15
@@ -6,17 +6,16 @@
 from camel.types import ModelPlatformType, ModelType
 from camel.utils import print_text_animated
 from colorama import Fore
+
 from composio_camel import Action, ComposioToolSet
 
 
 # pylint: enable=E0611
-
-
 composio_toolset = ComposioToolSet()
 tools = composio_toolset.get_actions(
-    actions=[Action.GITHUB_ACTIVITY_STAR_REPO_FOR_AUTHENTICATED_USER]
+    actions=[Action.GITHUB_STAR_A_REPOSITORY_FOR_THE_AUTHENTICATED_USER]
 )
-
+# tools = composio_toolset.get_tools(apps=[App.GMAIL])
 # set up LLM model
 assistant_model_config = ChatGPTConfig(
     temperature=0.0,
@@ -25,7 +24,7 @@
 
 model = ModelFactory.create(
     model_platform=ModelPlatformType.OPENAI,
-    model_type=ModelType.GPT_3_5_TURBO,
+    model_type=ModelType.GPT_4_TURBO,
     model_config_dict=assistant_model_config.__dict__,
 )
 
```
