Skip to content

Type Alias: DecisionNoulAnswer ​

ts
type DecisionNoulAnswer = {
  type: "noul";
  value: number;
};

Defined in: evaluator/LlamaDecisionContext/types.ts:120

Properties ​

type ​

ts
type: "noul";

Defined in: evaluator/LlamaDecisionContext/types.ts:121


value ​

ts
value: number;

Defined in: evaluator/LlamaDecisionContext/types.ts:129

A number between 0 and 1 representing the probability of the answer being yes.

1 means yes, and 0 means no. Values near 0.5 indicate uncertainty between yes and no.