Jev example · Weird worlds

Zombie escape-room routes

Choose a route in a fictional board-game puzzle.

Fun & gameschoice

State

This is the context Jev receives before answering the typed question.

{
  "rules": "A successful route must be open and silent. Loud routes trigger the game's alarm.",
  "routes": {
    "vent": {
      "open": true,
      "silent": true
    },
    "gate": {
      "open": true,
      "silent": false
    },
    "stairs": {
      "open": false,
      "silent": true
    }
  }
}

Typed questions (1)

Your answer

choice

Which route satisfies both rules? If none does, choose none.

Try in Playground
  • vent | Vent
  • gate | Gate
  • stairs | Stairs
  • none | No qualifying route

Try changing the scenario

Open the stairs while keeping the vent blocked.

Catalog source: TypeSafeAI/typesafe-playground, reused under MIT. This is an independent community catalog, not an official TypeSafe AI product.