diff --git a/src/backend/langflow/interface/base.py b/src/backend/langflow/interface/base.py index fa7b39650..3670bb8ae 100644 --- a/src/backend/langflow/interface/base.py +++ b/src/backend/langflow/interface/base.py @@ -91,12 +91,10 @@ class CustomChain(Chain, ABC): """Custom chain""" @staticmethod - @abstractmethod def function_name(): return "CustomChain" @classmethod - @abstractmethod def initialize(cls, *args, **kwargs): pass @@ -111,12 +109,10 @@ class CustomAgentExecutor(AgentExecutor, ABC): """Custom chain""" @staticmethod - @abstractmethod def function_name(): return "CustomChain" @classmethod - @abstractmethod def initialize(cls, *args, **kwargs): pass