diff --git a/src/backend/base/langflow/components/processing/alter_metadata.py b/src/backend/base/langflow/components/processing/alter_metadata.py index a0178d04c..7a6536bb1 100644 --- a/src/backend/base/langflow/components/processing/alter_metadata.py +++ b/src/backend/base/langflow/components/processing/alter_metadata.py @@ -9,6 +9,7 @@ class AlterMetadataComponent(Component): description = "Adds/Removes Metadata Dictionary on inputs" icon = "merge" name = "AlterMetadata" + legacy = True inputs = [ HandleInput( diff --git a/src/backend/base/langflow/components/processing/json_cleaner.py b/src/backend/base/langflow/components/processing/json_cleaner.py index 93c193ae6..f7cebbb6c 100644 --- a/src/backend/base/langflow/components/processing/json_cleaner.py +++ b/src/backend/base/langflow/components/processing/json_cleaner.py @@ -14,7 +14,7 @@ class JSONCleaner(Component): "Cleans the messy and sometimes incorrect JSON strings produced by LLMs " "so that they are fully compliant with the JSON spec." ) - + legacy = True inputs = [ MessageTextInput( name="json_str", display_name="JSON String", info="The JSON string to be cleaned.", required=True