from agno.agent import Agentfrom agno.models.langdb import LangDBfrom agno.tools.duckduckgo import DuckDuckGoToolsagent = Agent( model=LangDB(id="gpt-4o-mini"), tools=[ DuckDuckGoTools( search=True, news=True ) ], show_tool_calls=True, description="You are a research analyst that investigates topics and helps users find comprehensive information.", instructions=["Use tables to display data where possible."], markdown=True,)agent.print_response("What are the latest developments in AI technology?", stream=True)