Agentic AI - Real-World Agent Applications
What will the following Python code output?
def extract_preview(text):
return text[:7] + '...'
print(extract_preview('Machine learning models'))