From 013d3d5c3124a25fef9f704bc3cbbe4378818075 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Wed, 8 Oct 2025 20:17:38 +0000 Subject: [PATCH] customaiagent --- .../src/lib/components/flows/content/FlowInputsQuick.svelte | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/lib/components/flows/content/FlowInputsQuick.svelte b/frontend/src/lib/components/flows/content/FlowInputsQuick.svelte index d40d3a7fe5..76b7beaa85 100644 --- a/frontend/src/lib/components/flows/content/FlowInputsQuick.svelte +++ b/frontend/src/lib/components/flows/content/FlowInputsQuick.svelte @@ -168,8 +168,9 @@ ['While loop', 'whileloop'], ['Branch to one', 'branchone'], ['Branch to all', 'branchall'], - ['AI Agent', 'aiagent'] + ...(customUi?.aiAgent != false ? ([['AI Agent', 'aiagent']] as [string, string][]) : []) ] + let topLevelNodes: [string, string][] = $state([]) function computeToplevelNodeChoices(funcDesc: string, preFilter: 'all' | 'workspace' | 'hub') { if (funcDesc.length > 0 && preFilter == 'all' && kind == 'script') {