LangChain - Agents
Why does this custom agent code raise an error?
class MyAgent(BaseAgent):
def plan(self, input_text):
return input_text + 5
agent = MyAgent()
agent.plan('Hello')