MCPcopy Create free account
hub / github.com/CreminiAI/skillpack / queueSendFileToolCall

Function queueSendFileToolCall

web/js/chat.js:581–591  ·  view source on GitHub ↗
(toolCallId, toolInput)

Source from the content-addressed store, hash-verified

579}
580
581function 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
593function dequeueSendFileToolCall(toolCallId) {
594 if (toolCallId) {

Callers 1

handleAgentEventFunction · 0.85

Calls 1

extractSendFileToolInputFunction · 0.85

Tested by

no test coverage detected