feat: basic belief node with the basic belief types defined in KB.

ref: N25B-408
This commit is contained in:
Björn Otgaar
2025-12-11 14:12:26 +01:00
parent 062e9e3f38
commit 10d5a15c88
5 changed files with 214 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
import type { BasicBeliefNodeData } from "./BasicBeliefNode";
/**
* Default data for this node
*/
export const BasicBeliefNodeDefaults: BasicBeliefNodeData = {
label: "Belief",
droppable: true,
belief: {type: "keyword", id: "help", value: "help", label: "Keyword said:"},
hasReduce: true,
};