```diff
--- test_files/208-original.txt	2025-03-07 19:06:33
+++ test_files/208-modified.txt	2025-03-07 19:06:33
@@ -1,18 +1,17 @@
 import typing as t
 
-from composio.tools.local.base import Action, Tool
+from composio.tools.base.local import LocalAction, LocalTool
 
-from .actions import CreateImageVectorStore  # Import your action class
-from .actions import QueryImageVectorStore
+from .actions import CreateImageVectorStore, QueryImageVectorStore
 
 
-class EmbedTool(Tool):
+class EmbedTool(LocalTool, autoload=True):
     """
     This tool is useful in embedding images and finding images with text
     """
 
-    def actions(self) -> t.List[t.Type[Action]]:
-        return [CreateImageVectorStore, QueryImageVectorStore]
+    logo = "https://raw.githubusercontent.com/ComposioHQ/composio/master/python/docs/imgs/logos/embedtool.png"
 
-    def triggers(self) -> list:
-        return []
+    @classmethod
+    def actions(cls) -> t.List[t.Type[LocalAction]]:
+        return [CreateImageVectorStore, QueryImageVectorStore]
```
