from agno.agent import Agentfrom agno.models.groq import Groqfrom agno.tools.duckduckgo import DuckDuckGoToolsfrom agno.tools.newspaper4k import Newspaper4kToolsagent = Agent( model=Groq(id="llama-3.1-8b-instant"), tools=[DuckDuckGoTools(), Newspaper4kTools()], description="You are a senior NYT researcher writing an article on a topic.", instructions=[ "For a given topic, search for the top 5 links.", "Then read each URL and extract the article text, if a URL isn't available, ignore it.", "Analyse and prepare an NYT worthy article based on the information.", ], markdown=True, show_tool_calls=True, add_datetime_to_instructions=True,)agent.print_response("Simulation theory", stream=True)