fast_judge
Pick the best option from a given set, returning the choice with confidence and full probability distribution. Use it when you need a decisive selection without extended deliberation.
Instructions
Instantly select the best option from a set of candidates.
Returns the chosen option with full probability distribution and confidence. Call this when you need to pick one item from a known set without slow deliberation.
Args: question: What to decide (e.g. 'Which file contains the database connection settings?'). options: Dict mapping candidate keys to descriptions (at least 2 options). context: Optional context or state relevant to the decision. confidence_floor: Confidence floor (default 0.60) below which 'is_confident' is false.
Returns: JSON object with 'choice', 'confidence', 'probabilities', and 'is_confident'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | ||
| options | Yes | ||
| question | Yes | ||
| confidence_floor | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |