Variable openAIToolCallsSchemaConst
openAIToolCallsSchema: ZodArray<
ZodObject<
{
function: ZodObject<{ arguments: ZodString; name: ZodString }, $loose>;
id: ZodString;
type: ZodPipe<
ZodOptional<ZodLiteral<"function">>,
ZodTransform<"function", "function" | undefined>,
>;
},
$strip,
>,
> = ...
The zod schema for multiple OpenAI Tool Calls