"""Tatasteel sub-agent package.

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

from backend.chanakya.tatasteel.agent import tatasteel_agent
from backend.chanakya.tatasteel.server import app

__all__ = ["tatasteel_agent", "app"]
