Variable ModelSelectionSchemaConst
ModelSelectionSchema: ZodObject<
{
provider: ZodOptional<ZodString>;
modelId: ZodOptional<ZodString>;
temperature: ZodOptional<ZodNumber>;
maxTokens: ZodOptional<ZodNumber>;
reasoning: ZodOptional<
ZodEnum<
{ standard: "standard"; minimal: "minimal"; extended: "extended" },
>,
>;
},
$strip,
> = ...