```diff
--- test_files/003-original.txt	2025-03-07 19:06:12
+++ test_files/003-modified.txt	2025-03-07 19:06:12
@@ -5,13 +5,14 @@
 import os
 
 import dotenv
-from composio_lyzr import Action, ComposioToolSet
 from lyzr_automata import Agent, Task
 from lyzr_automata.ai_models.openai import OpenAIModel
 from lyzr_automata.pipelines.linear_sync_pipeline import LinearSyncPipeline
 from lyzr_automata.tasks.task_literals import InputType, OutputType
 
+from composio_lyzr import Action, ComposioToolSet
 
+
 # Load environment variables from .env
 dotenv.load_dotenv()
 
@@ -27,11 +28,11 @@
 composio_toolset = ComposioToolSet()
 
 # Define task
-instructions = "Star a repo SamparkAI/docs on GitHub"
+instructions = "Star a repo composiohq/composio on GitHub"
 
 # Get required tool
 (github_tool,) = composio_toolset.get_actions(
-    actions=[Action.GITHUB_ACTIVITY_STAR_REPO_FOR_AUTHENTICATED_USER]
+    actions=[Action.GITHUB_STAR_A_REPOSITORY_FOR_THE_AUTHENTICATED_USER]
 )
 
 # Define agent
```
