Variable chatSettingsSchemaConst
chatSettingsSchema: ZodObject<
{
apiKeyEnv: ZodOptional<ZodString>;
baseURL: ZodURL;
model: ZodString;
reasoning: ZodEnum<{ default: "default"; none: "none" }>;
replyShape: ZodDefault<ZodEnum<{ prompt: "prompt"; server: "server" }>>;
},
$strip,
> = ...
Settings for the model that proposes concepts and asks questions.