Variable openaiResponseFormatSchemaConst
openaiResponseFormatSchema: ZodObject<
{
json_schema: ZodObject<
{
description: ZodOptional<ZodString>;
name: ZodString;
schema: ZodObject<
{
additionalProperties: ZodOptional<ZodBoolean>;
properties: ZodRecord<
ZodString,
ZodUnion<
readonly [
ZodObject<{ description: ...; enum: ...; type: ... }, $loose>,
ZodObject<{ anyOf: ... }, $strip>,
],
>,
>;
required: ZodOptional<ZodArray<ZodString>>;
type: ZodLiteral<"object">;
},
$loose,
>;
},
$strip,
>;
type: ZodLiteral<"json_schema">;
},
$strip,
> = ...
OpenAI response format schema