( agent: AgentDefinition, )
| 166 | |
| 167 | // Type guards for runtime type checking |
| 168 | export function isBuiltInAgent( |
| 169 | agent: AgentDefinition, |
| 170 | ): agent is BuiltInAgentDefinition { |
| 171 | return agent.source === 'built-in' |
| 172 | } |
| 173 | |
| 174 | export function isCustomAgent( |
| 175 | agent: AgentDefinition, |
no outgoing calls
no test coverage detected