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