mirror of
https://github.com/langgenius/dify.git
synced 2025-12-22 10:45:35 -05:00
* test: adding some web tests (#27792) * feat: add validation to prevent saving empty opening statement in conversation opener modal (#27843) * fix(web): improve the consistency of the inputs-form UI (#27837) * fix(web): increase z-index of PortalToFollowElemContent (#27823) * fix: installation_id is missing when in tools page (#27849) * fix: avoid passing empty uniqueIdentifier to InstallFromMarketplace (#27802) Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * test: create new test scripts and update some existing test scripts o… (#27850) * feat: change feedback to forum (#27862) * chore: translate i18n files and update type definitions (#27868) Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> * Fix/template transformer line number (#27867) Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> * bump vite to 6.4.1 (#27877) * Add WEAVIATE_GRPC_ENDPOINT as designed in weaviate migration guide (#27861) Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> * Fix: correct DraftWorkflowApi.post response model (#27289) Signed-off-by: Yongtao Huang <yongtaoh2022@gmail.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> * fix Version 2.0.0-beta.2: Chat annotations Api Error #25506 (#27206) Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Asuka Minato <i@asukaminato.eu.org> * fix jina reader creadential migration command (#27883) * fix agent putout the output of workflow-tool twice (#26835) (#27087) * fix jina reader transform (#27922) * fix: prevent fetch version info in enterprise edition (#27923) * fix(api): fix `VariablePool.get` adding unexpected keys to variable_dictionary (#26767) Co-authored-by: -LAN- <laipz8200@outlook.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * refactor: implement tenant self queue for rag tasks (#27559) Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: -LAN- <laipz8200@outlook.com> * fix: bump brotli to 1.2.0 resloved CVE-2025-6176 (#27950) Signed-off-by: kenwoodjw <blackxin55+@gmail.com> --------- Signed-off-by: Yongtao Huang <yongtaoh2022@gmail.com> Signed-off-by: kenwoodjw <blackxin55+@gmail.com> Co-authored-by: aka James4u <smart.jamesjin@gmail.com> Co-authored-by: Novice <novice12185727@gmail.com> Co-authored-by: yangzheli <43645580+yangzheli@users.noreply.github.com> Co-authored-by: Elliott <105957288+Elliott-byte@users.noreply.github.com> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: johnny0120 <johnny0120@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Gritty_dev <101377478+codomposer@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: wangjifeng <163279492+kk-wangjifeng@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Boris Polonsky <BorisPolonsky@users.noreply.github.com> Co-authored-by: Yongtao Huang <yongtaoh2022@gmail.com> Co-authored-by: Cursx <33718736+Cursx@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Asuka Minato <i@asukaminato.eu.org> Co-authored-by: Jyong <76649700+JohnJyong@users.noreply.github.com> Co-authored-by: red_sun <56100962+redSun64@users.noreply.github.com> Co-authored-by: NFish <douxc512@gmail.com> Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com> Co-authored-by: -LAN- <laipz8200@outlook.com> Co-authored-by: hj24 <huangjian@dify.ai> Co-authored-by: kenwoodjw <blackxin55+@gmail.com>
234 lines
7.2 KiB
Python
234 lines
7.2 KiB
Python
from abc import ABC, abstractmethod
|
|
from collections.abc import Generator
|
|
from copy import deepcopy
|
|
from typing import TYPE_CHECKING, Any
|
|
|
|
if TYPE_CHECKING:
|
|
from models.model import File
|
|
|
|
from core.tools.__base.tool_runtime import ToolRuntime
|
|
from core.tools.entities.tool_entities import (
|
|
ToolEntity,
|
|
ToolInvokeMessage,
|
|
ToolParameter,
|
|
ToolProviderType,
|
|
)
|
|
|
|
|
|
class Tool(ABC):
|
|
"""
|
|
The base class of a tool
|
|
"""
|
|
|
|
def __init__(self, entity: ToolEntity, runtime: ToolRuntime):
|
|
self.entity = entity
|
|
self.runtime = runtime
|
|
|
|
def fork_tool_runtime(self, runtime: ToolRuntime) -> "Tool":
|
|
"""
|
|
fork a new tool with metadata
|
|
:return: the new tool
|
|
"""
|
|
return self.__class__(
|
|
entity=self.entity.model_copy(),
|
|
runtime=runtime,
|
|
)
|
|
|
|
@abstractmethod
|
|
def tool_provider_type(self) -> ToolProviderType:
|
|
"""
|
|
get the tool provider type
|
|
|
|
:return: the tool provider type
|
|
"""
|
|
|
|
def invoke(
|
|
self,
|
|
user_id: str,
|
|
tool_parameters: dict[str, Any],
|
|
conversation_id: str | None = None,
|
|
app_id: str | None = None,
|
|
message_id: str | None = None,
|
|
) -> Generator[ToolInvokeMessage]:
|
|
if self.runtime and self.runtime.runtime_parameters:
|
|
tool_parameters.update(self.runtime.runtime_parameters)
|
|
|
|
# try parse tool parameters into the correct type
|
|
tool_parameters = self._transform_tool_parameters_type(tool_parameters)
|
|
|
|
result = self._invoke(
|
|
user_id=user_id,
|
|
tool_parameters=tool_parameters,
|
|
conversation_id=conversation_id,
|
|
app_id=app_id,
|
|
message_id=message_id,
|
|
)
|
|
|
|
if isinstance(result, ToolInvokeMessage):
|
|
|
|
def single_generator() -> Generator[ToolInvokeMessage, None, None]:
|
|
yield result
|
|
|
|
return single_generator()
|
|
elif isinstance(result, list):
|
|
|
|
def generator() -> Generator[ToolInvokeMessage, None, None]:
|
|
yield from result
|
|
|
|
return generator()
|
|
else:
|
|
return result
|
|
|
|
def _transform_tool_parameters_type(self, tool_parameters: dict[str, Any]) -> dict[str, Any]:
|
|
"""
|
|
Transform tool parameters type
|
|
"""
|
|
# Temp fix for the issue that the tool parameters will be converted to empty while validating the credentials
|
|
result = deepcopy(tool_parameters)
|
|
for parameter in self.entity.parameters or []:
|
|
if parameter.name in tool_parameters:
|
|
result[parameter.name] = parameter.type.cast_value(tool_parameters[parameter.name])
|
|
|
|
return result
|
|
|
|
@abstractmethod
|
|
def _invoke(
|
|
self,
|
|
user_id: str,
|
|
tool_parameters: dict[str, Any],
|
|
conversation_id: str | None = None,
|
|
app_id: str | None = None,
|
|
message_id: str | None = None,
|
|
) -> ToolInvokeMessage | list[ToolInvokeMessage] | Generator[ToolInvokeMessage, None, None]:
|
|
pass
|
|
|
|
def get_runtime_parameters(
|
|
self,
|
|
conversation_id: str | None = None,
|
|
app_id: str | None = None,
|
|
message_id: str | None = None,
|
|
) -> list[ToolParameter]:
|
|
"""
|
|
get the runtime parameters
|
|
|
|
interface for developer to dynamic change the parameters of a tool depends on the variables pool
|
|
|
|
:return: the runtime parameters
|
|
"""
|
|
return self.entity.parameters
|
|
|
|
def get_merged_runtime_parameters(
|
|
self,
|
|
conversation_id: str | None = None,
|
|
app_id: str | None = None,
|
|
message_id: str | None = None,
|
|
) -> list[ToolParameter]:
|
|
"""
|
|
get merged runtime parameters
|
|
|
|
:return: merged runtime parameters
|
|
"""
|
|
parameters = self.entity.parameters
|
|
parameters = parameters.copy()
|
|
user_parameters = self.get_runtime_parameters() or []
|
|
user_parameters = user_parameters.copy()
|
|
|
|
# override parameters
|
|
for parameter in user_parameters:
|
|
# check if parameter in tool parameters
|
|
for tool_parameter in parameters:
|
|
if tool_parameter.name == parameter.name:
|
|
# override parameter
|
|
tool_parameter.type = parameter.type
|
|
tool_parameter.form = parameter.form
|
|
tool_parameter.required = parameter.required
|
|
tool_parameter.default = parameter.default
|
|
tool_parameter.options = parameter.options
|
|
tool_parameter.llm_description = parameter.llm_description
|
|
break
|
|
else:
|
|
# add new parameter
|
|
parameters.append(parameter)
|
|
|
|
return parameters
|
|
|
|
def create_image_message(
|
|
self,
|
|
image: str,
|
|
) -> ToolInvokeMessage:
|
|
"""
|
|
create an image message
|
|
|
|
:param image: the url of the image
|
|
:return: the image message
|
|
"""
|
|
return ToolInvokeMessage(
|
|
type=ToolInvokeMessage.MessageType.IMAGE, message=ToolInvokeMessage.TextMessage(text=image)
|
|
)
|
|
|
|
def create_file_message(self, file: "File") -> ToolInvokeMessage:
|
|
return ToolInvokeMessage(
|
|
type=ToolInvokeMessage.MessageType.FILE,
|
|
message=ToolInvokeMessage.FileMessage(),
|
|
meta={"file": file},
|
|
)
|
|
|
|
def create_link_message(self, link: str) -> ToolInvokeMessage:
|
|
"""
|
|
create a link message
|
|
|
|
:param link: the url of the link
|
|
:return: the link message
|
|
"""
|
|
return ToolInvokeMessage(
|
|
type=ToolInvokeMessage.MessageType.LINK, message=ToolInvokeMessage.TextMessage(text=link)
|
|
)
|
|
|
|
def create_text_message(self, text: str) -> ToolInvokeMessage:
|
|
"""
|
|
create a text message
|
|
|
|
:param text: the text
|
|
:return: the text message
|
|
"""
|
|
return ToolInvokeMessage(
|
|
type=ToolInvokeMessage.MessageType.TEXT,
|
|
message=ToolInvokeMessage.TextMessage(text=text),
|
|
)
|
|
|
|
def create_blob_message(self, blob: bytes, meta: dict | None = None) -> ToolInvokeMessage:
|
|
"""
|
|
create a blob message
|
|
|
|
:param blob: the blob
|
|
:param meta: the meta info of blob object
|
|
:return: the blob message
|
|
"""
|
|
return ToolInvokeMessage(
|
|
type=ToolInvokeMessage.MessageType.BLOB,
|
|
message=ToolInvokeMessage.BlobMessage(blob=blob),
|
|
meta=meta,
|
|
)
|
|
|
|
def create_json_message(self, object: dict, suppress_output: bool = False) -> ToolInvokeMessage:
|
|
"""
|
|
create a json message
|
|
"""
|
|
return ToolInvokeMessage(
|
|
type=ToolInvokeMessage.MessageType.JSON,
|
|
message=ToolInvokeMessage.JsonMessage(json_object=object, suppress_output=suppress_output),
|
|
)
|
|
|
|
def create_variable_message(
|
|
self, variable_name: str, variable_value: Any, stream: bool = False
|
|
) -> ToolInvokeMessage:
|
|
"""
|
|
create a variable message
|
|
"""
|
|
return ToolInvokeMessage(
|
|
type=ToolInvokeMessage.MessageType.VARIABLE,
|
|
message=ToolInvokeMessage.VariableMessage(
|
|
variable_name=variable_name, variable_value=variable_value, stream=stream
|
|
),
|
|
)
|