(...models: readonly (string | undefined)[])
| 380 | } |
| 381 | |
| 382 | function configuredModel(...models: readonly (string | undefined)[]): string | undefined { |
| 383 | return models.find((model) => model !== undefined && model.trim().length > 0); |
| 384 | } |
| 385 | |
| 386 | function installHeadlessHandlers(session: Session): void { |
| 387 | session.setApprovalHandler(() => ({ decision: 'approved' })); |
no outgoing calls
no test coverage detected