Variable phoenixMessagesSchemaConst
phoenixMessagesSchema: ZodArray<
ZodObject<
{
content: ZodUnion<
readonly [
ZodString,
ZodArray<
ZodDiscriminatedUnion<
[
ZodObject<{ text: ZodString; type: ZodLiteral<(...)> }, $strip>,
ZodObject<
{
tool_call: ZodObject<(...), (...)>;
tool_call_id: ZodString;
type: ZodLiteral<(...)>;
},
$strip,
>,
ZodObject<
{
tool_call_id: ZodString;
tool_result: ZodUnion<(...)>;
type: ZodLiteral<(...)>;
},
$strip,
>,
],
"type",
>,
>,
],
>;
role: ZodEnum<
{
ai: "ai";
assistant: "assistant";
developer: "developer";
model: "model";
system: "system";
tool: "tool";
user: "user";
},
>;
},
$strip,
>,
> = ...