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]