comfyui-mcp 0.52.22 → 0.52.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/orchestrator/index.js +2 -1
- package/dist/orchestrator/index.js.map +1 -1
- package/dist/orchestrator/open-identity-normalization.js +187 -0
- package/dist/orchestrator/open-identity-normalization.js.map +1 -1
- package/dist/orchestrator/panel-tools.js +55 -1
- package/dist/orchestrator/panel-tools.js.map +1 -1
- package/dist/orchestrator/run-completion-watchdog.js +120 -26
- package/dist/orchestrator/run-completion-watchdog.js.map +1 -1
- package/dist/services/api-nodes.js +8 -0
- package/dist/services/api-nodes.js.map +1 -1
- package/package.json +1 -1
|
@@ -122,7 +122,7 @@ import { startPanelConsoleHttpServer } from "./panel-console-http.js";
|
|
|
122
122
|
import { readComfyuiCrashLog, formatCrashNote } from "../services/crash-log.js";
|
|
123
123
|
import { QueueMonitor } from "../services/queue-monitor.js";
|
|
124
124
|
import { RunCompletions, describe as describeCorrelation, } from "./run-completion-journal.js";
|
|
125
|
-
import { createRunCompletionWatchdog } from "./run-completion-watchdog.js";
|
|
125
|
+
import { createRunCompletionWatchdog, resolveHistoryCompletionImages } from "./run-completion-watchdog.js";
|
|
126
126
|
import { AskAnswers, preview as previewQuestion } from "./ask-answer-journal.js";
|
|
127
127
|
import { initRunpodWatcher, getRunpodWatcher } from "../services/runpod-watch.js";
|
|
128
128
|
import { getPod } from "../services/runpod-client.js";
|
|
@@ -5895,6 +5895,7 @@ export async function runPanelOrchestrator() {
|
|
|
5895
5895
|
// still wins whenever it is coming.
|
|
5896
5896
|
const runCompletionWatchdog = createRunCompletionWatchdog({
|
|
5897
5897
|
awaiting: (promptId) => RunCompletions.awaitingCompletion(promptId),
|
|
5898
|
+
resolveOutputs: (promptId) => resolveHistoryCompletionImages(promptId),
|
|
5898
5899
|
deliver: (payload, ticket) => {
|
|
5899
5900
|
// The SAME arrival path the panel's frame takes: correlated once, here,
|
|
5900
5901
|
// against the ticket that is still open — so the agent is told this is the
|