Agentic AI - Real-World Agent Applications
Given the code below, what will be the output?
def research_agent(query):
data = {'AI': 'Artificial Intelligence', 'ML': 'Machine Learning'}
return data.get(query, 'Not found')
print(research_agent('ML'))