Files
dify-plugin-sdks/python/examples/code_based_workflow/tools/tool.py
T
2024-12-02 21:10:36 +08:00

12 lines
300 B
Python

from collections.abc import Generator
from dify_plugin import Tool
from dify_plugin.entities.tool import ToolInvokeMessage
class ToolTool(Tool):
def _invoke(
self, tool_parameters: dict
) -> Generator[ToolInvokeMessage, None, None]:
return super()._invoke(tool_parameters)