dify/api/core/tools/plugin_tool/tool.py

42 lines
1.4 KiB
Python
Raw Normal View History

2024-09-23 18:06:16 +08:00
from collections.abc import Generator
from typing import Any
from core.plugin.manager.tool import PluginToolManager
from core.tools.__base.tool import Tool
from core.tools.__base.tool_runtime import ToolRuntime
from core.tools.entities.tool_entities import ToolEntity, ToolInvokeMessage, ToolProviderType
class PluginTool(Tool):
tenant_id: str
plugin_id: str
2024-09-23 18:06:16 +08:00
def __init__(self, entity: ToolEntity, runtime: ToolRuntime, tenant_id: str, plugin_id: str) -> None:
2024-09-23 18:06:16 +08:00
super().__init__(entity, runtime)
self.tenant_id = tenant_id
self.plugin_id = plugin_id
2024-09-23 18:06:16 +08:00
@property
def tool_provider_type(self) -> ToolProviderType:
return ToolProviderType.PLUGIN
def _invoke(self, user_id: str, tool_parameters: dict[str, Any]) -> Generator[ToolInvokeMessage, None, None]:
manager = PluginToolManager()
return manager.invoke(
tenant_id=self.tenant_id,
user_id=user_id,
plugin_id=self.plugin_id,
2024-09-23 18:06:16 +08:00
tool_provider=self.entity.identity.provider,
tool_name=self.entity.identity.name,
credentials=self.runtime.credentials,
tool_parameters=tool_parameters,
)
def fork_tool_runtime(self, runtime: ToolRuntime) -> "PluginTool":
return PluginTool(
entity=self.entity,
runtime=runtime,
tenant_id=self.tenant_id,
plugin_id=self.plugin_id,
2024-09-24 16:33:19 +08:00
)