Variable vercelAIChatPartToolResultSchemaConst
vercelAIChatPartToolResultSchema: ZodObject<
{
output: ZodObject<
{ type: ZodLiteral<"text">; value: ZodString },
"strip",
ZodTypeAny,
{ type: "text"; value: string },
{ type: "text"; value: string },
>;
toolCallId: ZodString;
toolName: ZodString;
type: ZodLiteral<"tool-result">;
},
"strip",
ZodTypeAny,
{
output: { type: "text"; value: string };
toolCallId: string;
toolName: string;
type: "tool-result";
},
{
output: { type: "text"; value: string };
toolCallId: string;
toolName: string;
type: "tool-result";
},
> = ...