We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 054077c commit 19eaf6eCopy full SHA for 19eaf6e
1 file changed
src/utils/executionUtil.ts
@@ -145,6 +145,13 @@ export const graphToPrompt = async (
145
const resolvedInput = node.resolveInput(i)
146
if (!resolvedInput) continue
147
148
+ // Input resolved to a SubgraphNode widget
149
+ const { value } = resolvedInput
150
+ if (value) {
151
+ inputs[input.name] = Array.isArray(value) ? { __value__: value } : value
152
+ continue
153
+ }
154
+
155
inputs[input.name] = [
156
String(resolvedInput.origin_id),
157
// @ts-expect-error link.origin_slot is already number.
0 commit comments