From 53af441ec92dc796577fd8e8d0954045f9ecbf91 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Tue, 27 Feb 2024 12:55:42 -0300 Subject: [PATCH] Update field name in FrontendNode class --- src/backend/langflow/template/frontend_node/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/langflow/template/frontend_node/base.py b/src/backend/langflow/template/frontend_node/base.py index 9f62c7054..cc8356104 100644 --- a/src/backend/langflow/template/frontend_node/base.py +++ b/src/backend/langflow/template/frontend_node/base.py @@ -49,10 +49,10 @@ class FrontendNode(BaseModel): """Icon of the frontend node.""" is_input: Optional[bool] = None """Whether the frontend node is used as an input when processing the Graph. - If True, there should be a field named 'message'.""" + If True, there should be a field named 'input_value'.""" is_output: Optional[bool] = None """Whether the frontend node is used as an output when processing the Graph. - If True, there should be a field named 'message'.""" + If True, there should be a field named 'input_value'.""" is_composition: Optional[bool] = None """Whether the frontend node is used for composition.""" base_classes: List[str]