Skip to content

Commit 37556b5

Browse files
authored
Merge pull request #38 from DeForge-Labs/add-node-bool_operation-1754392221
Add Boolean Operation node documentation
2 parents 4155c7b + f30676f commit 37556b5

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed

lib/node-data.js

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2713,5 +2713,70 @@ export const nodeData = [
27132713
"Make an LLM think like your role model"
27142714
],
27152715
"diff": "easy"
2716+
},
2717+
{
2718+
"title": "Boolean Operation",
2719+
"category": "flow",
2720+
"type": "bool_operation",
2721+
"icon": {
2722+
"type": "",
2723+
"content": ""
2724+
},
2725+
"desc": "Performs a logical operation based on a condition",
2726+
"credit": 100,
2727+
"inputs": [
2728+
{
2729+
"desc": "First input",
2730+
"name": "Input 1",
2731+
"type": "Boolean"
2732+
},
2733+
{
2734+
"desc": "Second input",
2735+
"name": "Input 2",
2736+
"type": "Boolean"
2737+
}
2738+
],
2739+
"outputs": [
2740+
{
2741+
"desc": "The Flow of the Condition if true",
2742+
"name": "True",
2743+
"type": "Flow"
2744+
},
2745+
{
2746+
"desc": "The Flow of the Condition if false",
2747+
"name": "False",
2748+
"type": "Flow"
2749+
},
2750+
{
2751+
"desc": "Result",
2752+
"name": "Result",
2753+
"type": "Boolean"
2754+
}
2755+
],
2756+
"fields": [
2757+
{
2758+
"desc": "Logic (NOT operation only works on input 1)",
2759+
"name": "Logic",
2760+
"type": "select",
2761+
"value": "AND",
2762+
"options": [
2763+
"AND",
2764+
"OR",
2765+
"NOT"
2766+
]
2767+
}
2768+
],
2769+
"tags": [
2770+
"logic",
2771+
"and",
2772+
"or",
2773+
"not"
2774+
],
2775+
"longDescription": "Perform boolean logical operations on boolean values",
2776+
"useCases": [
2777+
"Add complex conditional logic to your agent",
2778+
"Add multiple conditions"
2779+
],
2780+
"diff": "easy"
27162781
}
27172782
];

0 commit comments

Comments
 (0)