()
| 6 | import { type MessageUpdateLazy, runToolUse } from './toolExecution.js' |
| 7 | |
| 8 | function getMaxToolUseConcurrency(): number { |
| 9 | return ( |
| 10 | parseInt(process.env.CLAUDE_CODE_MAX_TOOL_USE_CONCURRENCY || '', 10) || 10 |
| 11 | ) |
| 12 | } |
| 13 | |
| 14 | export type MessageUpdate = { |
| 15 | message?: Message |
no outgoing calls
no test coverage detected