Variable phoenixToolCallToOpenAIConst
phoenixToolCallToOpenAI: ZodPipe<
ZodObject<
{
tool_call: ZodObject<
{
arguments: ZodString;
name: ZodString;
type: ZodLiteral<"function">;
},
$strip,
>;
tool_call_id: ZodString;
type: ZodLiteral<"tool_call">;
},
$strip,
>,
ZodTransform<
{
function: { arguments: string; name: string; [key: string]: unknown };
id: string;
type: "function";
},
{
tool_call: { arguments: string; name: string; type: "function" };
tool_call_id: string;
type: "tool_call";
},
>,
> = ...