Agentic AI - Production Agent Architecture
Given this code snippet for scaling agents horizontally, what will be the output?
class Agent:
def __init__(self, id):
self.id = id
def run(self):
print(f"Agent {self.id} running")
agents = [Agent(i) for i in range(3)]
for agent in agents:
agent.run()