Variable ModelPreferencesSchemaConst
ModelPreferencesSchema: ZodObject<
{
costPriority: ZodOptional<ZodNumber>;
hints: ZodOptional<
ZodArray<ZodObject<{ name: ZodOptional<ZodString> }, $strip>>,
>;
intelligencePriority: ZodOptional<ZodNumber>;
speedPriority: ZodOptional<ZodNumber>;
},
$strip,
> = ...
The server's preferences for model selection, requested of the client during sampling.