"""Postgres sub-agent package.

Exports
-------
- ``postgres_agent``  — the ``EnterpriseAgent`` instance with DB tools attached
- ``app``             — the FastAPI/A2A ASGI application ready for uvicorn
"""

from backend.chanakya.insurance.agent import insurance_agent, app

__all__ = ["insurance_agent", "app"]
