Variable openaiChatPartSchemaConst
openaiChatPartSchema: ZodDiscriminatedUnion<
[
ZodObject<{ text: ZodString; type: ZodLiteral<"text"> }, $strip>,
ZodObject<
{
image_url: ZodObject<{ url: ZodString }, $strip>;
type: ZodLiteral<"image_url">;
},
$strip,
>,
],
"type",
> = ...