Agentic AI - Real-World Agent Applications
Given this pipeline code snippet:
What will
agent = Agent()
agent.add_step('load', function=load_data)
agent.add_step('clean', function=clean_data)
agent.add_step('analyze', function=analyze_data)
result = agent.run()What will
result contain?