Thanks! Jev takes a shared state plus a typed question and returns structured output instead of free-form text.
Adminby Richard Suwandi2026-09-17
Thanks! Jev takes a shared state plus a typed question and returns structured output instead of free-form text. For a Choice question, it looks roughly like:
```python
{
"choice": "raise",
"probabilities": {
"raise": 0.62,
"crate": 0.21,
"stare": 0.17,
...
},
"confidence": 0.31
}
```
For N-dle, it first computes the possible moves and how informative each one would be. Jev then chooses one shared guess, which is applied to every unsolved board. The feedback updates each board's remaining possible answers, and the loop repeats. Once every board is narrowed to a single answer, there is no decision left for Jev to make, so it submits the remaining answers without additional model calls