fix: import

This commit is contained in:
Stream
2025-11-06 17:50:18 +08:00
parent 02b11c2fe3
commit da2421f378
2 changed files with 1 additions and 14 deletions

View File

@ -231,16 +231,3 @@ class Tool(ABC):
variable_name=variable_name, variable_value=variable_value, stream=stream
),
)
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
),
)