@cascadeflow/n8n-nodes-cascadeflow 0.6.3 → 0.6.4
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.
|
@@ -978,28 +978,28 @@ class LmChatCascadeFlow {
|
|
|
978
978
|
// Add domain model inputs based on individual toggles
|
|
979
979
|
if (params?.enableDomainRouting) {
|
|
980
980
|
if (params?.enableCodeDomain) {
|
|
981
|
-
inputs.push({ displayName: 'Code
|
|
981
|
+
inputs.push({ displayName: 'Code', type: 'ai_languageModel', maxConnections: 1, required: false });
|
|
982
982
|
}
|
|
983
983
|
if (params?.enableMathDomain) {
|
|
984
|
-
inputs.push({ displayName: 'Math
|
|
984
|
+
inputs.push({ displayName: 'Math', type: 'ai_languageModel', maxConnections: 1, required: false });
|
|
985
985
|
}
|
|
986
986
|
if (params?.enableDataDomain) {
|
|
987
|
-
inputs.push({ displayName: 'Data
|
|
987
|
+
inputs.push({ displayName: 'Data', type: 'ai_languageModel', maxConnections: 1, required: false });
|
|
988
988
|
}
|
|
989
989
|
if (params?.enableCreativeDomain) {
|
|
990
|
-
inputs.push({ displayName: 'Creative
|
|
990
|
+
inputs.push({ displayName: 'Creative', type: 'ai_languageModel', maxConnections: 1, required: false });
|
|
991
991
|
}
|
|
992
992
|
if (params?.enableLegalDomain) {
|
|
993
|
-
inputs.push({ displayName: 'Legal
|
|
993
|
+
inputs.push({ displayName: 'Legal', type: 'ai_languageModel', maxConnections: 1, required: false });
|
|
994
994
|
}
|
|
995
995
|
if (params?.enableMedicalDomain) {
|
|
996
|
-
inputs.push({ displayName: 'Medical
|
|
996
|
+
inputs.push({ displayName: 'Medical', type: 'ai_languageModel', maxConnections: 1, required: false });
|
|
997
997
|
}
|
|
998
998
|
if (params?.enableFinancialDomain) {
|
|
999
|
-
inputs.push({ displayName: 'Financial
|
|
999
|
+
inputs.push({ displayName: 'Financial', type: 'ai_languageModel', maxConnections: 1, required: false });
|
|
1000
1000
|
}
|
|
1001
1001
|
if (params?.enableScienceDomain) {
|
|
1002
|
-
inputs.push({ displayName: 'Science
|
|
1002
|
+
inputs.push({ displayName: 'Science', type: 'ai_languageModel', maxConnections: 1, required: false });
|
|
1003
1003
|
}
|
|
1004
1004
|
}
|
|
1005
1005
|
|