from agno.agent import Agentfrom agno.tools.postgres import PostgresToolsagent = Agent( tools=[PostgresTools(db_url="postgresql://user:pass@localhost:5432/db")], show_tool_calls=True, markdown=True,)agent.print_response("Show me all tables in the database")