/ src / solace_agent_mesh / agent / utils / __init__.py
__init__.py
 1  """
 2  Utility modules for Solace Agent Mesh agents.
 3  
 4  Exports:
 5      ToolContextFacade: Simplified interface for tool authors to access context,
 6          artifacts, and send status updates.
 7  """
 8  
 9  from .tool_context_facade import ToolContextFacade
10  
11  __all__ = [
12      "ToolContextFacade",
13  ]