Variable DelegateOutputSchemaConst
DelegateOutputSchema: ZodObject<
{
recommended_model: ZodString;
reasoning: ZodString;
capabilities: ZodObject<
{
reasoning: ZodNumber;
contextWindow: ZodNumber;
codeGeneration: ZodNumber;
speed: ZodNumber;
cost: ZodNumber;
},
$strip,
>;
estimated_tokens: ZodNumber;
alternatives: ZodArray<
ZodObject<
{ model: ZodString; score: ZodNumber; tradeoff: ZodString },
$strip,
>,
>;
governance: ZodOptional<
ZodObject<
{
domain: ZodString;
votingThreshold: ZodString;
promotionReason: ZodString;
},
$strip,
>,
>;
},
$strip,
> = ...
Output schema for the delegate_to_model tool response.