Variable openAIToolChoiceToAnthropicConst
openAIToolChoiceToAnthropic: ZodPipe<
ZodUnion<
readonly [
ZodLiteral<"auto">,
ZodLiteral<"none">,
ZodLiteral<"required">,
ZodObject<
{
function: ZodObject<{ name: ZodString }, $strip>;
type: ZodLiteral<"function">;
},
$strip,
>,
],
>,
ZodTransform<
{ name: string; type: "tool" }
| { type: "auto" }
| { type: "any" },
| "none"
| "auto"
| "required"
| { function: { name: string }; type: "function" },
>,
> = ...