(toolCallId, toolInput)
| 579 | } |
| 580 | |
| 581 | function queueSendFileToolCall(toolCallId, toolInput) { |
| 582 | const file = extractSendFileToolInput(toolInput); |
| 583 | if (!file) return; |
| 584 | |
| 585 | if (toolCallId) { |
| 586 | pendingSendFileCalls.set(toolCallId, file); |
| 587 | return; |
| 588 | } |
| 589 | |
| 590 | anonymousSendFileCalls.push(file); |
| 591 | } |
| 592 | |
| 593 | function dequeueSendFileToolCall(toolCallId) { |
| 594 | if (toolCallId) { |
no test coverage detected