fix(Basic LLM Chain Node): Remove fallback connection on lower versions (#19053)

This commit is contained in:
Benjamin Schroth
2025-09-02 12:23:27 +02:00
committed by GitHub
parent 4c4c0932d1
commit 583dd48d8a
2 changed files with 6 additions and 8 deletions

View File

@@ -25,7 +25,7 @@ export function getInputs(parameters: IDataObject) {
const needsFallback = parameters?.needsFallback;
if (needsFallback === undefined || needsFallback === true) {
if (needsFallback === true) {
inputs.push({
displayName: 'Fallback Model',
maxConnections: 1,