Variable anthropicImageBlockSchemaConst
anthropicImageBlockSchema: ZodObject<
{
source: ZodObject<
{
data: ZodString;
media_type: ZodEnum<
["image/jpeg", "image/png", "image/gif", "image/webp"],
>;
type: ZodLiteral<"base64">;
},
"strip",
ZodTypeAny,
{
data: string;
media_type: "image/jpeg"
| "image/png"
| "image/gif"
| "image/webp";
type: "base64";
},
{
data: string;
media_type: "image/jpeg"
| "image/png"
| "image/gif"
| "image/webp";
type: "base64";
},
>;
type: ZodLiteral<"image">;
},
"strip",
ZodTypeAny,
{
source: {
data: string;
media_type: "image/jpeg"
| "image/png"
| "image/gif"
| "image/webp";
type: "base64";
};
type: "image";
},
{
source: {
data: string;
media_type: "image/jpeg"
| "image/png"
| "image/gif"
| "image/webp";
type: "base64";
};
type: "image";
},
> = ...