123456789101112131415161718192021222324252627282930313233343536373839404142 |
- 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
- def __init__(self, entity: ToolEntity, runtime: ToolRuntime, tenant_id: str, plugin_id: str) -> None:
- super().__init__(entity, runtime)
- self.tenant_id = tenant_id
- self.plugin_id = plugin_id
- @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,
- 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,
- )
|