from agno.agent import Agentfrom agno.tools.parallel import ParallelToolsagent = Agent( tools=[ ParallelTools( enable_search=True, enable_extract=True, max_results=5, max_chars_per_result=8000, ) ], markdown=True,)# Should use parallel_searchagent.print_response( "Search for the latest information on 'AI agents and autonomous systems' and summarize the key findings")# Should use parallel_extractagent.print_response( "Extract information about the product features from https://parallel.ai and https://docs.parallel.ai")