diff --git a/lang_agent/base.py b/lang_agent/base.py index 026bd0a..5aa6506 100644 --- a/lang_agent/base.py +++ b/lang_agent/base.py @@ -11,12 +11,6 @@ class LangToolBase(ABC): class GraphBase(ABC): - @property @abstractmethod - def agent(self): - """The agent object that must be provided by concrete implementations.""" - pass - - def get_agent(self): - """Convenience method to access the agent.""" - return self.agent \ No newline at end of file + def invoke(self, *nargs, **kwargs): + pass \ No newline at end of file