langflower 0.0.7 → 0.0.9
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/package.json +1 -1
- package/ui-dist/{chunk-Y6VMBLSJ.js → chunk-7UMVYN3A.js} +1 -1
- package/ui-dist/{chunk-6DQ2XSRW.js → chunk-MDGXX73Z.js} +3 -3
- package/ui-dist/index.html +1 -1
- package/ui-dist/main-2JJGCNTD.js +313 -0
- package/vendor/common-nodes/dist/ai/chat-completion-stream.d.ts +2 -0
- package/vendor/common-nodes/dist/ai/critique/node.d.ts +246 -0
- package/vendor/common-nodes/dist/ai/critique/node.js +2 -2
- package/vendor/common-nodes/dist/ai/fake-llm/node.d.ts +246 -0
- package/vendor/common-nodes/dist/ai/features/chat-completion-stream.d.ts +53 -0
- package/vendor/common-nodes/dist/ai/features/chat-completion-stream.js +1 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/autokick-recovery.d.ts +13 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/autokick-recovery.js +17 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/classify-llm-failure.d.ts +2 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/classify-llm-failure.js +113 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/dead-loop-detector.d.ts +28 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/dead-loop-detector.js +194 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/live-get-tools.d.ts +9 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/live-get-tools.js +21 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/llm-loop-reducer.d.ts +2 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/llm-loop-reducer.js +216 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/llm-loop-types.d.ts +125 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/llm-loop-types.js +39 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/normalize-llm-recovery-policy.d.ts +2 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/normalize-llm-recovery-policy.js +59 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/operators/normalize-tool-result.d.ts +1 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/operators/normalize-tool-result.js +7 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/operators/observe-provider-stream.d.ts +43 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/operators/observe-provider-stream.js +96 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/run-agent-loop.d.ts +32 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/run-agent-loop.js +58 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/run-llm-loop.d.ts +80 -0
- package/vendor/common-nodes/dist/ai/features/llm-loop/run-llm-loop.js +681 -0
- package/vendor/common-nodes/dist/ai/features/llm-role-preset.d.ts +69 -0
- package/vendor/common-nodes/dist/ai/features/llm-role-preset.js +265 -0
- package/vendor/common-nodes/dist/ai/features/llm-session/llm-session-shell.d.ts +148 -0
- package/vendor/common-nodes/dist/ai/features/llm-session/llm-session-shell.js +198 -0
- package/vendor/common-nodes/dist/ai/features/llm-session/run-session-machine.d.ts +21 -0
- package/vendor/common-nodes/dist/ai/features/llm-session/run-session-machine.js +118 -0
- package/vendor/common-nodes/dist/ai/features/openai/context-length-error.d.ts +14 -0
- package/vendor/common-nodes/dist/ai/features/openai/context-length-error.js +63 -0
- package/vendor/common-nodes/dist/ai/features/openai/create-chat-completion-stream.d.ts +19 -0
- package/vendor/common-nodes/dist/ai/features/openai/create-chat-completion-stream.js +182 -0
- package/vendor/common-nodes/dist/ai/features/openai/list-provider-models.d.ts +28 -0
- package/vendor/common-nodes/dist/ai/features/openai/list-provider-models.js +52 -0
- package/vendor/common-nodes/dist/ai/features/openai/llm-context-compaction.d.ts +31 -0
- package/vendor/common-nodes/dist/ai/features/openai/llm-context-compaction.js +326 -0
- package/vendor/common-nodes/dist/ai/features/openai/normalize-compaction-params.d.ts +14 -0
- package/vendor/common-nodes/dist/ai/features/openai/normalize-compaction-params.js +21 -0
- package/vendor/common-nodes/dist/ai/features/openai/prepare-chat-completion.d.ts +30 -0
- package/vendor/common-nodes/dist/ai/features/openai/prepare-chat-completion.js +132 -0
- package/vendor/common-nodes/dist/ai/features/path-choice/control-tools.d.ts +20 -0
- package/vendor/common-nodes/dist/ai/features/path-choice/control-tools.js +70 -0
- package/vendor/common-nodes/dist/ai/features/path-choice/run-reactive-path-choice-loop.d.ts +35 -0
- package/vendor/common-nodes/dist/ai/features/path-choice/run-reactive-path-choice-loop.js +106 -0
- package/vendor/common-nodes/dist/ai/features/prompt/build-effective-system-prompt.d.ts +9 -0
- package/vendor/common-nodes/dist/ai/features/prompt/build-effective-system-prompt.js +21 -0
- package/vendor/common-nodes/dist/ai/features/prompt/normalize-max-iterations.d.ts +13 -0
- package/vendor/common-nodes/dist/ai/features/prompt/normalize-max-iterations.js +23 -0
- package/vendor/common-nodes/dist/ai/features/prompt/resolve-chat-provider-model.d.ts +10 -0
- package/vendor/common-nodes/dist/ai/features/prompt/resolve-chat-provider-model.js +8 -0
- package/vendor/common-nodes/dist/ai/features/run-host-services.d.ts +54 -0
- package/vendor/common-nodes/dist/ai/features/run-host-services.js +29 -0
- package/vendor/common-nodes/dist/ai/features/scripted-chat-completion-stream.d.ts +17 -0
- package/vendor/common-nodes/dist/ai/features/scripted-chat-completion-stream.js +61 -0
- package/vendor/common-nodes/dist/ai/features/sub-agent-protocol.d.ts +39 -0
- package/vendor/common-nodes/dist/ai/features/sub-agent-protocol.js +43 -0
- package/vendor/common-nodes/dist/ai/features/ui-schema/llm-compaction-ui-schema.d.ts +14 -0
- package/vendor/common-nodes/dist/ai/features/ui-schema/llm-compaction-ui-schema.js +18 -0
- package/vendor/common-nodes/dist/ai/features/ui-schema/llm-panel-ui-schema.d.ts +80 -0
- package/vendor/common-nodes/dist/ai/features/ui-schema/llm-panel-ui-schema.js +76 -0
- package/vendor/common-nodes/dist/ai/features/ui-schema/llm-recovery-ui-schema.d.ts +113 -0
- package/vendor/common-nodes/dist/ai/features/ui-schema/llm-recovery-ui-schema.js +131 -0
- package/vendor/common-nodes/dist/ai/features/wait-for-subagent-result.d.ts +6 -0
- package/vendor/common-nodes/dist/ai/features/wait-for-subagent-result.js +30 -0
- package/vendor/common-nodes/dist/ai/llm-loop/autokick-recovery.d.ts +13 -0
- package/vendor/common-nodes/dist/ai/llm-loop/autokick-recovery.js +17 -0
- package/vendor/common-nodes/dist/ai/llm-loop/dead-loop-detector.d.ts +28 -0
- package/vendor/common-nodes/dist/ai/llm-loop/dead-loop-detector.js +194 -0
- package/vendor/common-nodes/dist/ai/llm-loop/llm-loop-reducer.js +36 -0
- package/vendor/common-nodes/dist/ai/llm-loop/llm-loop-types.d.ts +35 -0
- package/vendor/common-nodes/dist/ai/llm-loop/llm-loop-types.js +19 -0
- package/vendor/common-nodes/dist/ai/llm-loop/normalize-llm-recovery-policy.js +52 -9
- package/vendor/common-nodes/dist/ai/llm-loop/operators/observe-provider-stream.d.ts +8 -2
- package/vendor/common-nodes/dist/ai/llm-loop/operators/observe-provider-stream.js +43 -13
- package/vendor/common-nodes/dist/ai/llm-loop/run-llm-loop.d.ts +3 -5
- package/vendor/common-nodes/dist/ai/llm-loop/run-llm-loop.js +116 -1
- package/vendor/common-nodes/dist/ai/llm-recovery-ui-schema.d.ts +82 -0
- package/vendor/common-nodes/dist/ai/llm-recovery-ui-schema.js +95 -0
- package/vendor/common-nodes/dist/ai/llm-session-shell.d.ts +4 -9
- package/vendor/common-nodes/dist/ai/llm-session-shell.js +2 -4
- package/vendor/common-nodes/dist/ai/nodes/critique/node.d.ts +588 -0
- package/vendor/common-nodes/dist/ai/nodes/critique/node.js +240 -0
- package/vendor/common-nodes/dist/ai/nodes/fake-llm/node.d.ts +571 -0
- package/vendor/common-nodes/dist/ai/nodes/fake-llm/node.js +208 -0
- package/vendor/common-nodes/dist/ai/nodes/openai-llm/node.d.ts +587 -0
- package/vendor/common-nodes/dist/ai/nodes/openai-llm/node.js +91 -0
- package/vendor/common-nodes/dist/ai/nodes/review/node.d.ts +593 -0
- package/vendor/common-nodes/dist/ai/nodes/review/node.js +240 -0
- package/vendor/common-nodes/dist/ai/nodes/sub-agent/node.d.ts +630 -0
- package/vendor/common-nodes/dist/ai/nodes/sub-agent/node.js +302 -0
- package/vendor/common-nodes/dist/ai/openai/create-chat-completion-stream.js +6 -0
- package/vendor/common-nodes/dist/ai/openai/prepare-chat-completion.d.ts +2 -0
- package/vendor/common-nodes/dist/ai/openai/prepare-chat-completion.js +18 -0
- package/vendor/common-nodes/dist/ai/openai-llm/node.d.ts +246 -0
- package/vendor/common-nodes/dist/ai/review/node.d.ts +246 -0
- package/vendor/common-nodes/dist/ai/review/node.js +2 -2
- package/vendor/common-nodes/dist/ai/sub-agent/node.d.ts +246 -0
- package/vendor/common-nodes/dist/ai/sub-agent/node.js +2 -2
- package/vendor/common-nodes/dist/catalog.js +7 -5
- package/vendor/common-nodes/dist/compile-custom-nodes/node.d.ts +21 -0
- package/vendor/common-nodes/dist/compile-custom-nodes/node.js +45 -0
- package/vendor/common-nodes/dist/crawl/crawl/node.js +1 -1
- package/vendor/common-nodes/dist/crawl/fetch-url/node.js +1 -1
- package/vendor/common-nodes/dist/flow/repeat/node.js +6 -1
- package/vendor/common-nodes/dist/langflower-tools/emit-registration-tools.d.ts +18 -0
- package/vendor/common-nodes/dist/langflower-tools/emit-registration-tools.js +29 -0
- package/vendor/common-nodes/dist/langflower-tools/node.d.ts +20 -0
- package/vendor/common-nodes/dist/langflower-tools/node.js +77 -0
- package/vendor/common-nodes/dist/text/append-file/node.js +1 -1
- package/vendor/common-nodes/dist/text/read-file/node.js +1 -1
- package/vendor/common-nodes/dist/text/write-file/node.js +1 -1
- package/vendor/common-nodes/dist/tools/inventory-tool-round.d.ts +2 -2
- package/vendor/common-nodes/package.json +10 -10
- package/vendor/compiler/dist/compile-project-nodes.d.ts +2 -1
- package/vendor/compiler/dist/compile-project-nodes.js +35 -6
- package/vendor/compiler/dist/resolve-host-types.d.ts +0 -5
- package/vendor/compiler/dist/resolve-host-types.js +0 -8
- package/vendor/node-sdk/dist/node-factory/define-llm-node/define-llm-node.d.ts +1 -1
- package/vendor/node-sdk/dist/node-factory/define-llm-node/define-llm-node.js +1 -1
- package/vendor/node-sdk/dist/node-factory/define-llm-node/recovery-notice.d.ts +8 -0
- package/vendor/node-sdk/dist/node-factory/define-llm-node/recovery-notice.js +14 -0
- package/vendor/runtime/dist/runtime-editor.d.ts +5 -1
- package/vendor/runtime/dist/runtime-editor.js +19 -0
- package/vendor/runtime/dist/runtime-runner.js +17 -17
- package/vendor/runtime/dist/runtime.d.ts +2 -1
- package/vendor/runtime/dist/runtime.js +1 -0
- package/vendor/runtime/dist/testing/workflows/workflow-events.d.ts +8 -6
- package/vendor/runtime/dist/testing/workflows/workflow-events.js +19 -31
- package/vendor/runtime/dist/types.d.ts +33 -38
- package/vendor/runtime/dist/types.js +2 -1
- package/vendor/server/dist/bridge/attach-langflower-bridge.js +3 -2
- package/vendor/server/dist/bridge/bridge-event-log.js +17 -102
- package/vendor/server/dist/bridge/build-execution-context.d.ts +5 -2
- package/vendor/server/dist/bridge/build-execution-context.js +45 -5
- package/vendor/server/dist/bridge/forward-runner-event.d.ts +1 -1
- package/vendor/server/dist/bridge/forward-runner-event.js +7 -12
- package/vendor/server/dist/bridge/get-live-wired-tools.d.ts +12 -0
- package/vendor/server/dist/bridge/get-live-wired-tools.js +80 -0
- package/vendor/server/dist/bridge/langflower-tools-rpc.d.ts +7 -0
- package/vendor/server/dist/bridge/langflower-tools-rpc.js +29 -0
- package/vendor/server/dist/bridge/settings-draft-controller.js +26 -3
- package/vendor/server/dist/bridge/wire-custom-palette-handlers.d.ts +2 -1
- package/vendor/server/dist/bridge/wire-custom-palette-handlers.js +3 -5
- package/vendor/server/dist/bridge/wire-runner-handlers.js +15 -8
- package/vendor/server/dist/checkpoint/run-checkpoint-session.d.ts +1 -1
- package/vendor/server/dist/checkpoint/run-checkpoint-session.js +10 -9
- package/vendor/server/dist/palette/compile-and-hot-swap-custom-nodes.d.ts +10 -0
- package/vendor/server/dist/palette/compile-and-hot-swap-custom-nodes.js +23 -0
- package/vendor/server/dist/workflow/apply-editor-mutation.d.ts +5 -0
- package/vendor/server/dist/workflow/apply-editor-mutation.js +32 -0
- package/vendor/server/skeleton/instructions.md +9 -5
- package/vendor/server/skeleton/nodes/my-nodes/README.md +4 -3
- package/vendor/server/skeleton/schemas/langflower-config.schema.json +11 -1
- package/vendor/server/skeleton/skills/langflower-helper/SKILL.md +49 -19
- package/vendor/server/skeleton/skills/langflower-helper/architecture.md +22 -9
- package/vendor/server/skeleton/skills/langflower-helper/layout.md +15 -15
- package/vendor/server/skeleton/skills/langflower-node-writer/SKILL.md +19 -9
- package/vendor/server/skeleton/skills/langflower-workflow-writer/SKILL.md +14 -10
- package/vendor/server/skeleton/workflows/starter.json +30 -3
- package/vendor/shared/dist/execution/derive-run-settle-outcome.d.ts +1 -1
- package/vendor/shared/dist/execution/derive-run-settle-outcome.js +4 -3
- package/vendor/shared/dist/execution/derive-run-settle-outcome.test.js +9 -9
- package/vendor/shared/dist/langflower-bus-config.d.ts +6 -14
- package/vendor/shared/dist/langflower-bus-config.js +4 -12
- package/vendor/shared/dist/langflower-config/resolve-wired-tool-options.js +6 -0
- package/vendor/shared/dist/langflower-config/resolve-wired-tool-options.test.js +30 -0
- package/vendor/shared/dist/langflower-ws-waits.d.ts +7 -14
- package/vendor/shared/dist/langflower-ws-waits.js +14 -14
- package/vendor/websocket-bridge/dist/bridge-codec.d.ts +1 -0
- package/vendor/websocket-bridge/dist/bridge-codec.js +11 -11
- package/vendor/websocket-bridge/dist/bridge-frame.js +1 -1
- package/vendor/websocket-bridge/dist/bridge-subjects.d.ts +1 -1
- package/vendor/websocket-bridge/dist/bridge-subjects.js +2 -2
- package/vendor/websocket-bridge/dist/bridge-types.d.ts +13 -1
- package/vendor/websocket-bridge/dist/create-client.js +3 -3
- package/vendor/websocket-bridge/dist/create-server.js +12 -6
- package/vendor/websocket-bridge/package.json +8 -0
- package/ui-dist/main-SMO3L7U5.js +0 -311
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
import { filter, map, Observable } from 'rxjs';
|
|
2
|
+
import { defineLlmNode, isSteerControlPayload, toLlmRecoveryPortValue, } from '@langflower/node-sdk/llm';
|
|
3
|
+
import { collectAgentToolHandles } from '../../../tools/collect-agent-tool-handles.js';
|
|
4
|
+
import { buildEffectiveSystemPrompt } from '../../features/prompt/build-effective-system-prompt.js';
|
|
5
|
+
import { resolveChatProviderModel } from '../../features/prompt/resolve-chat-provider-model.js';
|
|
6
|
+
import { createLlmSessionCycle$, demuxByKind, normalizeMaxFeedbackTurns, } from '../../features/llm-session/llm-session-shell.js';
|
|
7
|
+
import { llmCompactionUiSchema } from '../../features/ui-schema/llm-compaction-ui-schema.js';
|
|
8
|
+
import { llmRecoveryUiSchema } from '../../features/ui-schema/llm-recovery-ui-schema.js';
|
|
9
|
+
import { llmMaxIterationsUiField, llmPanelUiSchema, } from '../../features/ui-schema/llm-panel-ui-schema.js';
|
|
10
|
+
import { parseLlmRolePreset, resolveEffectiveSkillId, } from '../../features/llm-role-preset.js';
|
|
11
|
+
import { DEFAULT_PATH_CHOICE_MAX_ITERATIONS, PATH_CHOICE_MAX_ITERATIONS_CAP, normalizeMaxIterations, } from '../../features/prompt/normalize-max-iterations.js';
|
|
12
|
+
import { normalizeLlmRecoveryPolicy } from '../../features/llm-loop/normalize-llm-recovery-policy.js';
|
|
13
|
+
import { normalizeCompactionConfig } from '../../features/openai/normalize-compaction-params.js';
|
|
14
|
+
import { flattenSubAgentRegistrations, } from '../../features/sub-agent-protocol.js';
|
|
15
|
+
import { waitForSubagentResult } from '../../features/wait-for-subagent-result.js';
|
|
16
|
+
import { REVIEW_ACCEPT_TOOL, REVIEW_FEEDBACK_TOOL, } from '../../features/path-choice/control-tools.js';
|
|
17
|
+
import { runPathChoiceToolLoop, } from '../../features/path-choice/run-reactive-path-choice-loop.js';
|
|
18
|
+
import { getRunHostServices } from '../../features/run-host-services.js';
|
|
19
|
+
const FORCED_TOOL_SYSTEM = [
|
|
20
|
+
'You are an adversarial Critique node — not the author of the assignment.',
|
|
21
|
+
`Finish by calling exactly one control tool: ${REVIEW_ACCEPT_TOOL} or ${REVIEW_FEEDBACK_TOOL}.`,
|
|
22
|
+
'Do not complete or rewrite the original assignment yourself.',
|
|
23
|
+
'Your job is to attack the packet: contradictions, overclaim, unsafe assumptions, missing evidence, scope creep.',
|
|
24
|
+
'You may call optional inventory tools first when they help investigate.',
|
|
25
|
+
'Do not write free-form accept/reject essays.',
|
|
26
|
+
`Call ${REVIEW_FEEDBACK_TOOL} with concrete findings when the packet is not yet defensible.`,
|
|
27
|
+
`Call ${REVIEW_ACCEPT_TOOL} only when further attack is non-blocking — agreed enough to stop critiquing.`,
|
|
28
|
+
].join(' ');
|
|
29
|
+
const requireChatConfig = (providerId, model) => {
|
|
30
|
+
if (providerId.trim().length === 0) {
|
|
31
|
+
throw new Error('Provider is required for Critique chat');
|
|
32
|
+
}
|
|
33
|
+
if (model.trim().length === 0) {
|
|
34
|
+
throw new Error('Model is required for Critique chat');
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
const buildEffectiveCritiqueSystem = (input) => {
|
|
38
|
+
const merged = buildEffectiveSystemPrompt(input);
|
|
39
|
+
const parts = [FORCED_TOOL_SYSTEM];
|
|
40
|
+
if (merged.trim().length > 0) {
|
|
41
|
+
parts.push(merged);
|
|
42
|
+
}
|
|
43
|
+
return parts.join('\n\n---\n\n');
|
|
44
|
+
};
|
|
45
|
+
const buildUserContent = (assignment, packet) => [
|
|
46
|
+
'## Original assignment',
|
|
47
|
+
assignment.trim().length > 0 ? assignment : '(empty assignment)',
|
|
48
|
+
'',
|
|
49
|
+
'## Packet to attack',
|
|
50
|
+
packet.trim().length > 0 ? packet : '(empty packet)',
|
|
51
|
+
].join('\n');
|
|
52
|
+
const buildRevisedPacketUserContent = (packet) => [
|
|
53
|
+
'## Revised packet to attack',
|
|
54
|
+
packet.trim().length > 0 ? packet : '(empty packet)',
|
|
55
|
+
].join('\n');
|
|
56
|
+
const hasUserMessage = (history) => history.some((message) => message.role === 'user');
|
|
57
|
+
const runCritiqueTurn = (context, packet, history, subagentResult$) => {
|
|
58
|
+
const factory = context.factory;
|
|
59
|
+
if (factory === undefined) {
|
|
60
|
+
return new Observable((subscriber) => {
|
|
61
|
+
subscriber.error(new Error('Critique chat is only available during server workflow runs'));
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
requireChatConfig(context.providerId, context.model);
|
|
65
|
+
const userContent = hasUserMessage(history)
|
|
66
|
+
? buildRevisedPacketUserContent(packet)
|
|
67
|
+
: buildUserContent(context.assignment, packet);
|
|
68
|
+
const messages = [
|
|
69
|
+
...history,
|
|
70
|
+
{ role: 'user', content: userContent },
|
|
71
|
+
];
|
|
72
|
+
return runPathChoiceToolLoop({
|
|
73
|
+
factory,
|
|
74
|
+
providerId: context.providerId,
|
|
75
|
+
model: context.model,
|
|
76
|
+
messages,
|
|
77
|
+
maxIterations: context.maxIterations,
|
|
78
|
+
tools: context.tools,
|
|
79
|
+
compaction: context.compaction,
|
|
80
|
+
recovery: context.recovery,
|
|
81
|
+
steerControl$: context.steerControl$,
|
|
82
|
+
subagentRegistrations: context.subagentRegistrations,
|
|
83
|
+
toolCtx: context.toolCtx,
|
|
84
|
+
...(context.subagentRegistrations.length > 0
|
|
85
|
+
? {
|
|
86
|
+
waitForSubagentResult: (callId, signal) => waitForSubagentResult(subagentResult$, callId, signal, context.recovery.subagentTimeoutMs),
|
|
87
|
+
}
|
|
88
|
+
: {}),
|
|
89
|
+
}).pipe(map((chunk) => {
|
|
90
|
+
if (chunk.kind === 'accept') {
|
|
91
|
+
return {
|
|
92
|
+
kind: 'accept',
|
|
93
|
+
notes: chunk.notes,
|
|
94
|
+
result: packet,
|
|
95
|
+
};
|
|
96
|
+
}
|
|
97
|
+
return chunk;
|
|
98
|
+
}));
|
|
99
|
+
};
|
|
100
|
+
/**
|
|
101
|
+
* Adversarial Critique: path choice via the same Review-private control tools
|
|
102
|
+
* (`accept` / `feedback`). First input is the original assignment; second is
|
|
103
|
+
* the packet under attack. Optional inventory / MCP / Sub-Agents may run first.
|
|
104
|
+
*
|
|
105
|
+
* Session history uses the shared {@link createLlmSessionCycle$} (ADR-016):
|
|
106
|
+
* init = assignment / system / inventory; turn driver = `packet`.
|
|
107
|
+
*/
|
|
108
|
+
export const critiqueNode = defineLlmNode({
|
|
109
|
+
type: 'common-critique',
|
|
110
|
+
displayName: 'Critique',
|
|
111
|
+
category: 'AI',
|
|
112
|
+
description: 'Adversarial Critique: first input is the original assignment/topic; second is the packet to attack. Finish with accept (agreed enough) or feedback (findings). Requires native tool / function calling. Optional wired tools / MCP / Sub-Agents may run via harness first.',
|
|
113
|
+
uiSchema: [
|
|
114
|
+
...llmPanelUiSchema.filter((item) => item.field !== 'maxIterations'),
|
|
115
|
+
llmMaxIterationsUiField(DEFAULT_PATH_CHOICE_MAX_ITERATIONS, PATH_CHOICE_MAX_ITERATIONS_CAP),
|
|
116
|
+
...llmCompactionUiSchema,
|
|
117
|
+
...llmRecoveryUiSchema,
|
|
118
|
+
],
|
|
119
|
+
bind(ctx, { makeInput, configureOutput, combineInputs }, inventory) {
|
|
120
|
+
const { tools, mcp, subagentRegistration, subagentResult, steerControl, } = inventory;
|
|
121
|
+
const assignment = makeInput('assignment', {
|
|
122
|
+
name: 'assignment',
|
|
123
|
+
wireType: 'string',
|
|
124
|
+
inline: 'text-multiline',
|
|
125
|
+
required: true,
|
|
126
|
+
});
|
|
127
|
+
const packet = makeInput('packet', {
|
|
128
|
+
name: 'packet',
|
|
129
|
+
wireType: 'string',
|
|
130
|
+
inline: 'text-multiline',
|
|
131
|
+
required: true,
|
|
132
|
+
});
|
|
133
|
+
const systemPrompt = makeInput('systemPrompt', {
|
|
134
|
+
name: 'systemPrompt',
|
|
135
|
+
wireType: 'string',
|
|
136
|
+
inline: 'text-multiline',
|
|
137
|
+
defaultValue: '',
|
|
138
|
+
});
|
|
139
|
+
// Init peers only — packet is the session turn driver (ADR-016).
|
|
140
|
+
const context$ = combineInputs([assignment, systemPrompt, tools, subagentRegistration, mcp, ctx], ([assignmentValue, systemPromptValue, toolList, subagentList, mcpList, ec,]) => {
|
|
141
|
+
const rolePreset = parseLlmRolePreset(ec.params.rolePreset);
|
|
142
|
+
const skillId = resolveEffectiveSkillId(rolePreset, ec.params.skillId);
|
|
143
|
+
const hostServices = getRunHostServices(ec);
|
|
144
|
+
const skillMarkdown = hostServices?.skillMarkdown ?? '';
|
|
145
|
+
const agentsMarkdown = hostServices?.agentsMarkdown ?? '';
|
|
146
|
+
return {
|
|
147
|
+
assignment: String(assignmentValue ?? ''),
|
|
148
|
+
...resolveChatProviderModel(ec.params, hostServices),
|
|
149
|
+
skillId,
|
|
150
|
+
skillMarkdown,
|
|
151
|
+
effectiveSystemPrompt: buildEffectiveCritiqueSystem({
|
|
152
|
+
rolePreset,
|
|
153
|
+
systemPromptInput: String(systemPromptValue ?? ''),
|
|
154
|
+
agentsMarkdown,
|
|
155
|
+
skillMarkdown,
|
|
156
|
+
}),
|
|
157
|
+
factory: hostServices?.createChatCompletionStream,
|
|
158
|
+
maxIterations: normalizeMaxIterations(ec.params.maxIterations, {
|
|
159
|
+
fallback: DEFAULT_PATH_CHOICE_MAX_ITERATIONS,
|
|
160
|
+
maxCap: PATH_CHOICE_MAX_ITERATIONS_CAP,
|
|
161
|
+
}),
|
|
162
|
+
maxFeedbackTurns: normalizeMaxFeedbackTurns(ec.params.maxFeedbackTurns),
|
|
163
|
+
...(hostServices?.requestPermission !== undefined
|
|
164
|
+
? { requestPermission: hostServices.requestPermission }
|
|
165
|
+
: {}),
|
|
166
|
+
compaction: normalizeCompactionConfig(ec.params),
|
|
167
|
+
recovery: normalizeLlmRecoveryPolicy(ec.params),
|
|
168
|
+
steerControl$: steerControl.value$.pipe(filter(isSteerControlPayload)),
|
|
169
|
+
tools: collectAgentToolHandles({
|
|
170
|
+
toolHandles: ec.toolHandles,
|
|
171
|
+
toolsPort: toolList,
|
|
172
|
+
mcpHandles: ec.mcpHandles,
|
|
173
|
+
mcpPort: mcpList,
|
|
174
|
+
}),
|
|
175
|
+
subagentRegistrations: flattenSubAgentRegistrations(subagentList),
|
|
176
|
+
toolCtx: {
|
|
177
|
+
projectDir: ec.projectDir,
|
|
178
|
+
runId: ec.runId,
|
|
179
|
+
...(hostServices?.authorize !== undefined
|
|
180
|
+
? { authorize: hostServices.authorize }
|
|
181
|
+
: {}),
|
|
182
|
+
...(hostServices?.denyPaths !== undefined
|
|
183
|
+
? { denyPaths: hostServices.denyPaths }
|
|
184
|
+
: {}),
|
|
185
|
+
...(hostServices?.allowedHosts !== undefined
|
|
186
|
+
? { allowedHosts: hostServices.allowedHosts }
|
|
187
|
+
: {}),
|
|
188
|
+
},
|
|
189
|
+
};
|
|
190
|
+
});
|
|
191
|
+
const cycle$ = createLlmSessionCycle$(context$, packet.value$, (context) => ({
|
|
192
|
+
history: [
|
|
193
|
+
{
|
|
194
|
+
role: 'system',
|
|
195
|
+
content: context.effectiveSystemPrompt,
|
|
196
|
+
},
|
|
197
|
+
],
|
|
198
|
+
trackAssistantHistory: false,
|
|
199
|
+
appendUserFeedbackToHistory: false,
|
|
200
|
+
session: undefined,
|
|
201
|
+
}), (context, turnPayload, history) => runCritiqueTurn(context, String(turnPayload ?? ''), history, subagentResult.value$), { primeTurn0: false });
|
|
202
|
+
const reasoning$ = cycle$.pipeValue(demuxByKind('reasoning', (chunk) => chunk
|
|
203
|
+
.text));
|
|
204
|
+
const draftResponse$ = cycle$.pipeValue(demuxByKind('draftResponse', (chunk) => chunk
|
|
205
|
+
.text));
|
|
206
|
+
const toolLog$ = cycle$.pipeValue(demuxByKind('toolLog', (chunk) => chunk.text));
|
|
207
|
+
const recovery$ = cycle$.pipeValue(demuxByKind('recoveryNotice', (chunk) => {
|
|
208
|
+
const notice = chunk;
|
|
209
|
+
return toLlmRecoveryPortValue(notice);
|
|
210
|
+
}));
|
|
211
|
+
const response$ = cycle$.pipeValue(demuxByKind('accept', (chunk) => chunk
|
|
212
|
+
.result));
|
|
213
|
+
const feedback$ = cycle$.pipeValue(demuxByKind('feedback', (chunk) => chunk
|
|
214
|
+
.notes));
|
|
215
|
+
const subagent$ = cycle$.pipeValue(demuxByKind('subagentSpawn', (chunk) => chunk
|
|
216
|
+
.payload));
|
|
217
|
+
return {
|
|
218
|
+
inputs: [assignment, packet, systemPrompt],
|
|
219
|
+
outputs: [
|
|
220
|
+
configureOutput('reasoning', reasoning$, {
|
|
221
|
+
wireType: 'string',
|
|
222
|
+
feed: { role: 'reasoning', streaming: true },
|
|
223
|
+
}),
|
|
224
|
+
configureOutput('draftResponse', draftResponse$, {
|
|
225
|
+
wireType: 'string',
|
|
226
|
+
feed: { role: 'draft', streaming: true },
|
|
227
|
+
}),
|
|
228
|
+
configureOutput('response', response$, {
|
|
229
|
+
wireType: 'string',
|
|
230
|
+
feed: { role: 'result' },
|
|
231
|
+
}),
|
|
232
|
+
configureOutput('feedback', feedback$, {
|
|
233
|
+
wireType: 'string',
|
|
234
|
+
feed: { role: 'result' },
|
|
235
|
+
}),
|
|
236
|
+
],
|
|
237
|
+
inventoryOutputs: { toolLog$, recovery$, subagent$ },
|
|
238
|
+
};
|
|
239
|
+
},
|
|
240
|
+
});
|