2024-09-23 18:06:16 +08:00
|
|
|
from collections.abc import Generator
|
|
|
|
from typing import Any
|
|
|
|
|
|
|
|
from core.plugin.entities.plugin_daemon import PluginToolProviderEntity
|
2024-09-20 13:55:09 +08:00
|
|
|
from core.plugin.manager.base import BasePluginManager
|
2024-09-23 18:06:16 +08:00
|
|
|
from core.tools.entities.tool_entities import ToolInvokeMessage
|
2024-09-20 13:55:09 +08:00
|
|
|
|
|
|
|
|
|
|
|
class PluginToolManager(BasePluginManager):
|
2024-09-23 18:06:16 +08:00
|
|
|
def fetch_tool_providers(self, tenant_id: str) -> list[PluginToolProviderEntity]:
|
2024-09-20 15:08:39 +08:00
|
|
|
"""
|
|
|
|
Fetch tool providers for the given asset.
|
|
|
|
"""
|
2024-09-23 13:09:46 +08:00
|
|
|
response = self._request_with_plugin_daemon_response(
|
2024-09-23 18:06:16 +08:00
|
|
|
"GET", f"plugin/{tenant_id}/tools", list[PluginToolProviderEntity], params={"page": 1, "page_size": 256}
|
|
|
|
)
|
|
|
|
return response
|
|
|
|
|
|
|
|
def invoke(
|
|
|
|
self,
|
|
|
|
tenant_id: str,
|
|
|
|
user_id: str,
|
|
|
|
plugin_unique_identifier: str,
|
|
|
|
tool_provider: str,
|
|
|
|
tool_name: str,
|
|
|
|
credentials: dict[str, Any],
|
|
|
|
tool_parameters: dict[str, Any],
|
|
|
|
) -> Generator[ToolInvokeMessage, None, None]:
|
|
|
|
response = self._request_with_plugin_daemon_response_stream(
|
|
|
|
"POST",
|
|
|
|
f"plugin/{tenant_id}/tool/invoke",
|
|
|
|
ToolInvokeMessage,
|
|
|
|
data={
|
|
|
|
"plugin_unique_identifier": plugin_unique_identifier,
|
|
|
|
"user_id": user_id,
|
|
|
|
"data": {
|
|
|
|
"provider": tool_provider,
|
|
|
|
"tool": tool_name,
|
|
|
|
"credentials": credentials,
|
|
|
|
"tool_parameters": tool_parameters,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
return response
|
|
|
|
|
|
|
|
def validate_provider_credentials(
|
|
|
|
self, tenant_id: str, user_id: str, plugin_unique_identifier: str, provider: str, credentials: dict[str, Any]
|
|
|
|
) -> bool:
|
|
|
|
"""
|
|
|
|
validate the credentials of the provider
|
|
|
|
"""
|
|
|
|
response = self._request_with_plugin_daemon_response(
|
|
|
|
"POST",
|
|
|
|
f"plugin/{tenant_id}/tool/validate_credentials",
|
|
|
|
bool,
|
|
|
|
data={
|
|
|
|
"plugin_unique_identifier": plugin_unique_identifier,
|
|
|
|
"user_id": user_id,
|
|
|
|
"data": {
|
|
|
|
"provider": provider,
|
|
|
|
"credentials": credentials,
|
|
|
|
},
|
|
|
|
},
|
2024-09-23 13:09:46 +08:00
|
|
|
)
|
|
|
|
return response
|