Variable GenerationCommonConfigSchemaConst

GenerationCommonConfigSchema: z.ZodObject<
    {
        maxOutputTokens: z.ZodOptional<z.ZodNumber>;
        stopSequences: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
        temperature: z.ZodOptional<z.ZodNumber>;
        topK: z.ZodOptional<z.ZodNumber>;
        topP: z.ZodOptional<z.ZodNumber>;
        version: z.ZodOptional<z.ZodString>;
    },
    "strip",
    z.ZodTypeAny,
    {
        maxOutputTokens?: number;
        stopSequences?: string[];
        temperature?: number;
        topK?: number;
        topP?: number;
        version?: string;
    },
    {
        maxOutputTokens?: number;
        stopSequences?: string[];
        temperature?: number;
        topK?: number;
        topP?: number;
        version?: string;
    },
>

Zod schema of a common config object.