(component: ComponentDefinition)
| 38 | * Check if a component is configured as an agent-callable tool. |
| 39 | */ |
| 40 | export function isAgentCallable(component: ComponentDefinition): boolean { |
| 41 | return component.toolProvider?.kind === 'component'; |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Infer the binding type for a port based on its connection type. |
no outgoing calls
no test coverage detected