Agentic AI - Real-World Agent Applications
Find the bug in this code snippet:
skills = {}
def add_skill(name, func):
skills[name] = func
add_skill("reminder", lambda: print("Reminder set"))
skills["reminder"]()