| 123456789101112 | from collections.abc import Generatorfrom typing import Anyfrom dify_plugin import Toolfrom dify_plugin.entities.tool import ToolInvokeMessageclass {{ .PluginName | SnakeToCamel }}Tool(Tool):    def _invoke(self, tool_parameters: dict[str, Any]) -> Generator[ToolInvokeMessage]:        yield self.create_json_message({            "result": "Hello, world!"        })
 |