LangChain - Agents
Identify the issue in this custom agent code:
class CustomAgent:
def plan(self, input_text):
return f'Processing: {input_text}'
agent = CustomAgent()
agent.plan('Test')