smoltalk
    Preparing search index...

    Variable SystemMessageJSONSchemaConst

    SystemMessageJSONSchema: ZodObject<
        {
            content: ZodUnion<
                readonly [
                    ZodString,
                    ZodArray<
                        ZodObject<{ text: ZodString; type: ZodLiteral<"text"> }, $strip>,
                    >,
                ],
            >;
            name: ZodOptional<ZodString>;
            rawData: ZodOptional<ZodAny>;
            role: ZodLiteral<"system">;
        },
        $strip,
    > = ...