Create a basic belief node that can be used in further stages to create inferred belief and be inputs for other nodes. #32

Merged
9828273 merged 12 commits from feat/basic-belief-nodes into demo 2026-01-06 14:29:15 +00:00
Showing only changes of commit 8f1367ed83 - Show all commits

View File

@@ -93,6 +93,10 @@ export default function BasicBeliefNode(props: NodeProps<BasicBeliefNode>) {
belief: {
...data.belief,
type: newType,
value:
newType === "emotion"
? emotionOptions[0]
: data.belief.value,
},
});
}