Noul

Ask a binary question and receive the model’s probability of yes.

Ask a yes/no question

question.json
1{
2  "type": "noul",
3  "instructions": "Does the report describe a failed automated job?"
4}

Use type noul for a binary judgment. Optional criteria may describe true and false. Keep the question’s positive direction explicit so a high value has an unambiguous meaning.

Read the probability

answer.json
1{
2  "type": "noul",
3  "noul": 0.96
4}

Noul is a number in [0, 1]. Zero assigns no probability to yes; one assigns all probability to yes. An illustrative result of 0.96 favors yes. Noul has no separate confidence field.

Choose a threshold in code

Your application turns the probability into a decision. Test the threshold against labeled cases and measure the errors on each side. Preserve the original probability in evaluation records.

Decision Model ProtocolWorking draft · 0.1