Agentic AI - Production Agent Architecture
Given the code below, what will be the output?
class Agent:
def receive(self, message):
return f"Received: {message}"
def send_message(agent, message):
return agent.receive(message)
agent = Agent()
print(send_message(agent, "Hello"))