(content: Content)
| 16 | } |
| 17 | |
| 18 | export function isFunctionCall(content: Content): boolean { |
| 19 | return ( |
| 20 | content.role === 'model' && |
| 21 | !!content.parts && |
| 22 | content.parts.every((part) => !!part.functionCall) |
| 23 | ); |
| 24 | } |
no outgoing calls
no test coverage detected