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

Function dequeueSendFileToolCall

web/js/chat.js:593–601  ·  view source on GitHub ↗
(toolCallId)

Source from the content-addressed store, hash-verified

591}
592
593function dequeueSendFileToolCall(toolCallId) {
594 if (toolCallId) {
595 const file = pendingSendFileCalls.get(toolCallId) || null;
596 pendingSendFileCalls.delete(toolCallId);
597 return file;
598 }
599
600 return anonymousSendFileCalls.shift() || null;
601}
602
603function extractSendFileToolInput(toolInput) {
604 if (!toolInput || typeof toolInput !== "object") {

Callers 1

handleAgentEventFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected