Get agent configuration by name Args: agent_name: Agent name Returns: AgentConfig: Agent configuration or None if not found
(self, agent_name: str)
| 93 | return agent_config |
| 94 | |
| 95 | async def get_info(self, agent_name: str) -> Optional[AgentConfig]: |
| 96 | """Get agent configuration by name |
| 97 | |
| 98 | Args: |
| 99 | agent_name: Agent name |
| 100 | |
| 101 | Returns: |
| 102 | AgentConfig: Agent configuration or None if not found |
| 103 | """ |
| 104 | return await self.agent_context_manager.get_info(agent_name) |
| 105 | |
| 106 | async def list(self) -> List[str]: |
| 107 | """List all registered agents |
no outgoing calls
no test coverage detected