LangChain - Agents
Given this custom agent code snippet, what will be printed?
class MyAgent:
def plan(self, input_text):
if 'hello' in input_text.lower():
return 'Greet'
return 'Ignore'
agent = MyAgent()
print(agent.plan('Hello there!'))