feat: added correct showing of goals with the description and can_fail

ref: N25B-434
This commit is contained in:
Björn Otgaar
2026-01-08 12:31:46 +01:00
parent e6f29a0f6b
commit c7ed3c8ef2
4 changed files with 41 additions and 11 deletions

View File

@@ -120,7 +120,7 @@ export default function BasicBeliefNode(props: NodeProps<BasicBeliefNode>) {
wrapping = '"'
break;
case ("semantic"):
placeholder = "description..."
placeholder = "short description..."
wrapping = '"'
break;
case ("object"):
@@ -180,7 +180,7 @@ export default function BasicBeliefNode(props: NodeProps<BasicBeliefNode>) {
<MultilineTextField
value={data.belief.description}
setValue={setBeliefDescription}
placeholder={"Describe the desciption of this LLM belief..."}
placeholder={"Describe a detailed desciption of this LLM belief..."}
/>
</div>
)}