LangChain - Agents
Consider this custom agent class:
What will be the output of
class CustomAgent:
def plan(self, input_text):
return f'Action chosen: {input_text[::-1]}'
agent = CustomAgent()What will be the output of
agent.plan('Hello')?