pythontsStarter
An LLM cites a document for a claim. This recipe checks the citation in two steps: a plain string match that catches quotes missing from the source, then one noul question that returns the probability the quoted section actually supports the claim. Your code turns that probability into a verdict.
pythontsStarter
A single Choice question sorts an inbound support ticket into one of four queues and returns a probability for every option. The model supplies the label and the certainty; your router applies the thresholds, holds the doubtful tickets for a human, and keeps every side effect in your code rather than in the prompt.
pythontsIntermediate
A support ticket needs a category, a severity, and two yes/no facts that only matter for one category each. Asking in sequence costs four round trips and four copies of the ticket. This recipe sends all four questions in one call, including the speculative ones, and lets the routing code ignore what it does not need.
pythontsIntermediate
One Choice names the action the user is asking for and one Noul says whether the message confirms it. Two numbers come back, and a table of per-action thresholds in your code decides the rest: a read runs at moderate confidence, a refund needs more, and anything below the floor goes to a person.